/* ============================================
   LYNCH FENCE — Main Stylesheet
   Brand: Navy #1E3A5F | Yellow #F5D200
   ============================================ */

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

:root {
  --navy:        #1E3A5F;
  --navy-dark:   #122540;
  --navy-light:  #2d5490;
  --yellow:      #F5D200;
  --yellow-dark: #d4b400;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-400:    #adb5bd;
  --gray-600:    #6c757d;
  --gray-700:    #495057;
  --gray-900:    #212529;
  --periwinkle:  #8BA3C7;
  --sky:         #4BBFD6;
  --sky-dark:    #35a8be;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,.1), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 30px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.08);
  --shadow-xl:   0 20px 50px rgba(0,0,0,.15);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.accent { color: var(--yellow); }
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,210,0,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--navy-dark);
  border-color: var(--yellow);
  font-weight: 700;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,210,0,.35);
}

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- HEADER / NAV --- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 4px 0;
}

#header.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 60px;
  width: auto;
  transition: opacity var(--transition);
}

.logo-text-fallback {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .06em;
  color: var(--white);
  line-height: 1;
}
.logo-text-fallback span { color: var(--yellow); }

.logo-text-fallback--footer {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

#header.scrolled .logo-img { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover { color: var(--yellow); }

.nav-links .nav-cta {
  background: var(--yellow);
  color: var(--navy-dark);
  padding: 10px 20px;
  border-radius: var(--radius);
}
.nav-links .nav-cta:hover {
  background: var(--yellow-dark);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,210,0,.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('whitepvc2.jpg');
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
  overflow: hidden;
  padding: 120px 24px 80px;
}

/* Dark directional overlay — darkest left (text side), lighter right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 20, 38, 0.88) 0%,
    rgba(10, 25, 48, 0.78) 45%,
    rgba(10, 25, 48, 0.50) 100%
  );
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,20,38,0.6) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-financing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 40px;
  font-style: italic;
}

.hero-financing svg {
  width: 16px;
  height: 16px;
  color: var(--sky);
  flex-shrink: 0;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  width: fit-content;
  margin: 0 auto;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.badge-label {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: center;
}

.badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeInUp 2s ease 2s both;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--navy-dark);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--sky);
  flex-shrink: 0;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,.02) 80px,
      rgba(255,255,255,.02) 81px
    );
  pointer-events: none;
}

.how-it-works .section-header .section-eyebrow { color: var(--sky); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header .accent { color: var(--yellow); }
.how-it-works .section-header .section-sub { color: rgba(255,255,255,.6); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,.06);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  letter-spacing: -.05em;
  user-select: none;
}

.step-icon {
  width: 88px;
  height: 88px;
  background: rgba(75,191,214,.12);
  border: 2px solid rgba(75,191,214,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.step-icon svg { width: 40px; height: 40px; }

.step:hover .step-icon {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(75,191,214,.3);
}

.step h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(75,191,214,.4);
  margin-top: 44px;
  flex-shrink: 0;
  width: 48px;
}

.step-arrow svg { width: 48px; height: 24px; }

.steps-cta {
  text-align: center;
  margin-top: 56px;
}

/* --- SERVICES --- */
.services { background: var(--gray-50); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Flip Card */
.service-card {
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d;
}

.service-card:hover .service-card-inner,
.service-card.flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.service-card-front {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.service-card-back {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  border: 2px solid rgba(75,191,214,.25);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(75,191,214,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--sky-dark);
  flex-shrink: 0;
}

.service-icon svg { width: 36px; height: 36px; }

.service-back-icon {
  width: 68px;
  height: 68px;
  background: rgba(245,210,0,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  flex-shrink: 0;
}

.service-back-icon svg { width: 38px; height: 38px; }

.service-card-front h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.service-card-back h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 0;
}

.service-card-front p {
  color: var(--gray-600);
  font-size: .86rem;
  margin-bottom: 12px;
  line-height: 1.55;
  flex: 1;
}

.service-card-back p {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.service-list li {
  font-size: .82rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 7px;
}

.service-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
}

.flip-hint {
  font-size: .72rem;
  color: var(--sky);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .04em;
  opacity: .8;
}

/* --- ABOUT --- */
.about { background: var(--white); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
}

.about-text .section-eyebrow { text-align: left; }

.about-shop-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, rgba(30,58,95,.07) 0%, rgba(75,191,214,.1) 100%);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0 24px;
}

.about-shop-callout svg { flex-shrink: 0; color: var(--sky); margin-top: 2px; }

.about-shop-callout div { display: flex; flex-direction: column; gap: 4px; }

.about-shop-callout strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy-dark);
}

.about-shop-callout span {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.about-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 20px;
  text-align: left;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.7;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(75,191,214,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-dark);
  flex-shrink: 0;
}

.value-icon svg { width: 22px; height: 22px; }

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.value-item p {
  font-size: .88rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.55;
}

/* --- TEAM --- */
.team { background: var(--navy-dark); }
.team .section-eyebrow { color: var(--white); }
.team .section-header h2 { color: var(--white); }
.team .section-sub { color: rgba(255,255,255,.7); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(75,191,214,.15) 100%);
  color: var(--yellow);
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.team-info {
  padding: 28px 24px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}

.team-title {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--yellow);
  margin-bottom: 14px;
}

.team-info p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .team-photo-placeholder { min-height: 200px; font-size: 2.2rem; }
}

/* --- GALLERY --- */
.gallery { background: var(--gray-50); }

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-xl); }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,37,64,.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gallery-type {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.gallery-loc {
  font-size: .85rem;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.gallery-cta p {
  font-size: 1.05rem;
  color: var(--gray-600);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

/* --- SERVICE AREAS --- */
.service-areas { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}

.area-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.area-card:hover { border-color: var(--sky); box-shadow: var(--shadow-md); }

.area-card--primary {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-color: var(--navy);
  color: var(--white);
}

.area-card--primary h3, .area-card--primary .area-subtitle { color: var(--white) !important; }
.area-card--primary .area-list li { color: rgba(255,255,255,.8); }
.area-card--primary .area-list li::before { background: var(--yellow); }

.area-state-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--navy-dark);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.area-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.area-subtitle {
  font-size: .8rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
}

.area-card:not(.area-card--primary) .area-list { grid-template-columns: 1fr; }

.area-list li {
  font-size: .88rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

.area-note {
  text-align: center;
  color: var(--gray-600);
  font-size: .92rem;
}

.area-note a { color: var(--navy); font-weight: 600; text-decoration: underline; }

/* --- TESTIMONIALS --- */
.testimonials { background: var(--navy-dark); }

.testimonials .section-header .section-eyebrow { color: var(--yellow); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header .accent { color: var(--yellow); }

/* Carousel wrapper */
.testimonials-carousel {
  position: relative;
  padding: 0 0 48px;
}

.testimonials-track-wrap {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover { background: var(--yellow); color: var(--navy-dark); transform: translateY(-60%) scale(1.08); }
.carousel-btn--prev { left: -22px; }
.carousel-btn--next { right: -22px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: var(--yellow);
  transform: scale(1.3);
}

@media (max-width: 1024px) {
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
  .carousel-btn--prev { left: 0; }
  .carousel-btn--next { right: 0; }
}
@media (max-width: 640px) {
  .testimonials-track .testimonial-card { flex: 0 0 100%; }
  .carousel-btn { top: auto; bottom: 52px; transform: none; }
  .carousel-btn:hover { transform: scale(1.08); }
  .carousel-btn--prev { left: calc(50% - 56px); }
  .carousel-btn--next { right: calc(50% - 56px); }
}

.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}

.testimonial-card--featured {
  background: rgba(245,210,0,.08);
  border-color: rgba(245,210,0,.25);
}

.stars {
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
}

.testimonial-author span {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

/* --- TEXTURE ON GRAY SECTIONS --- */
.gallery,
.areas {
  background-image:
    radial-gradient(circle, rgba(30,58,95,.055) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, #F5D200 0%, #d4b400 100%);
  padding: 56px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.cta-banner-text p {
  color: rgba(18,37,64,.75);
  font-size: 1rem;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .btn-yellow {
  background: var(--navy-dark);
  color: var(--white);
  border-color: var(--navy-dark);
}

.cta-banner .btn-yellow:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 6px 20px rgba(18,37,64,.3);
}

.cta-banner .btn-outline-light {
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}

.cta-banner .btn-outline-light:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* --- CONTACT --- */
.contact { background: var(--gray-50); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-eyebrow { text-align: left; }
.contact-info h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; text-align: left; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(75,191,214,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-dark);
  flex-shrink: 0;
}

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

.contact-detail strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-detail a, .contact-detail span {
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.5;
}

.contact-detail a:hover { color: var(--navy); text-decoration: underline; }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30,58,95,.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

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

.form-checkbox { flex-direction: row; align-items: center; gap: 10px; }

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-weight: 400;
  color: var(--gray-700);
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-200);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label input:checked + .checkbox-custom {
  background: var(--navy);
  border-color: var(--navy);
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ============================================
   404 PAGE
   ============================================ */
.not-found {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.not-found-bg {
  position: absolute;
  inset: 0;
  background-image: url('whitepvc.jpg');
  background-size: cover;
  background-position: center;
  opacity: .07;
}

.not-found-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.not-found-num {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  opacity: .18;
  letter-spacing: -.04em;
  margin-bottom: -20px;
}

.not-found-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.not-found-inner p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.not-found-links p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}

.not-found-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
}

.not-found-links a {
  color: var(--sky);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.not-found-links a:hover { text-decoration: underline; }

.form-error-msg {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: var(--radius);
  color: #ef4444;
  font-size: .88rem;
  text-align: center;
}

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  text-align: center;
}

.form-success.show { display: flex; }

.form-success svg {
  width: 56px;
  height: 56px;
  color: #22c55e;
}

.form-success p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; }

.footer-links h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

.footer-contact p {
  font-size: .88rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--yellow); }

.footer-contact .btn-yellow {
  margin-top: 16px;
  font-size: .85rem;
  padding: 10px 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }
.fade-in-delay-5 { transition-delay: .5s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  /* testimonials handled by carousel JS */
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .area-card--primary { grid-column: 1 / -1; }
  .area-card--primary .area-list { grid-template-columns: repeat(4, 1fr); }
  .about-inner { gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-links .nav-cta { margin-top: 16px; width: 100%; justify-content: center; text-align: center; background: var(--yellow); border-radius: var(--radius); padding: 14px 20px; }

  /* Hero — disable fixed attachment (breaks iOS Safari) */
  .hero {
    background-attachment: scroll;
    padding: 120px 20px 64px;
    min-height: auto;
  }
  .hero-badges { padding: 16px 20px; gap: 0; }
  .badge { padding: 0 14px; }
  .badge-num { font-size: 1.3rem; }

  /* Trust bar — 2 rows of 3 */
  .trust-bar-inner { flex-wrap: wrap; gap: 12px 0; justify-content: center; }
  .trust-item { width: 33.333%; justify-content: center; }

  /* Steps */
  .steps-grid { flex-direction: column; align-items: center; gap: 32px; }
  .step { max-width: 100%; padding: 0; }
  .step-arrow { transform: rotate(90deg); margin: 0; }

  /* Services — single column, make cards tappable */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { height: auto; min-height: 260px; perspective: none; }
  .service-card-inner { transform: none !important; position: static; display: flex; flex-direction: column; }
  .service-card-front { position: static; border-radius: var(--radius-lg); backface-visibility: visible; -webkit-backface-visibility: visible; padding: 28px 24px; }
  .service-card-back { position: static; transform: none; border-radius: var(--radius-lg); backface-visibility: visible; -webkit-backface-visibility: visible; padding: 24px; margin-top: 2px; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-image-wrap { order: -1; }
  .about-photo { aspect-ratio: 16/9; }
  .about-shop-callout { flex-direction: column; gap: 10px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-overlay { opacity: 1; }

  /* Service areas */
  .areas-grid { grid-template-columns: 1fr; }
  .area-card--primary .area-list { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  /* testimonials carousel handles mobile */

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row--three { grid-template-columns: 1fr 1fr; }

  /* CTA banner */
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 20px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* Section headers */
  .section-header { padding: 0 8px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }

  /* Hero */
  .hero { padding: 88px 16px 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .hero-badges { flex-direction: column; gap: 10px; width: 100%; }
  .badge-divider { width: 60px; height: 1px; }

  /* Trust bar — 2 columns on small mobile */
  .trust-item { width: 50%; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .form-row--three { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item--tall { grid-row: span 1; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 6px; }

  /* Blog cards */
  .blog-card { flex-direction: column; }
  .blog-card-img { height: 180px; }
}

/* ============================================
   BLOG STYLES
   ============================================ */

.active-nav { color: var(--yellow) !important; }

/* Blog Hero */
.blog-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 72px;
  text-align: center;
}
.blog-hero .section-eyebrow { color: var(--sky); }
.blog-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.blog-hero p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Blog Listing */
.blog-listing { padding: 72px 0 96px; background: var(--gray-50); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-card--featured {
  grid-column: 1 / -1;
  display: grid !important;
  flex-direction: unset;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.blog-card--featured .blog-card-img { height: 100%; min-height: 300px; }

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: rgba(75,191,214,.12);
  color: var(--sky-dark);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(75,191,214,.25);
}

.blog-read-time {
  font-size: .78rem;
  color: var(--gray-400);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.blog-card-body h2 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0;
}
.blog-card--featured .blog-card-body h2 { font-size: 1.5rem; }
.blog-card-body h2 a { color: var(--navy-dark); transition: color var(--transition); }
.blog-card-body h2 a:hover { color: var(--navy-light); }

.blog-card-body p { color: var(--gray-600); font-size: .9rem; line-height: 1.65; margin: 0; flex: 1; }

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--sky-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
}
.blog-read-more svg { width: 16px; height: 16px; transition: transform var(--transition); }
.blog-read-more:hover { color: var(--navy); gap: 10px; }
.blog-read-more:hover svg { transform: translateX(3px); }

/* Blog Post */
.blog-post-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 120px 0 64px;
}

.blog-post-header-inner { max-width: 760px; }

.blog-back {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color var(--transition);
}
.blog-back:hover { color: var(--yellow); }

.blog-post-header-inner .blog-meta { margin-bottom: 20px; }

.blog-post-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.blog-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: .82rem;
  flex-shrink: 0;
}

.blog-author strong { display: block; color: var(--white); font-size: .95rem; }
.blog-author span { font-size: .78rem; color: rgba(255,255,255,.5); }

/* Blog Post Body */
.blog-post-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 72px 24px 96px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-content { min-width: 0; }

.blog-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.blog-content h2 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin: 40px 0 16px;
  padding-top: 8px;
  border-top: 3px solid var(--yellow);
  display: inline-block;
}

.blog-content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 28px 0 10px;
}

.blog-content ul, .blog-content ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.blog-content ul li, .blog-content ol li {
  font-size: .97rem;
  line-height: 1.7;
  color: var(--gray-700);
  padding: 5px 0 5px 22px;
  position: relative;
}

.blog-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sky);
}

.blog-content ol { counter-reset: list; }
.blog-content ol li { counter-increment: list; }
.blog-content ol li::before {
  content: counter(list) '.';
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: var(--sky-dark);
  top: 6px;
}

.blog-content a { color: var(--navy-light); text-decoration: underline; }
.blog-content a:hover { color: var(--navy-dark); }

.blog-content strong { color: var(--navy-dark); font-weight: 700; }
.blog-content em { font-style: italic; }

.blog-callout {
  background: rgba(75,191,214,.08);
  border-left: 4px solid var(--sky);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 24px;
  margin: 28px 0;
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.blog-callout strong { color: var(--navy-dark); }

/* Price Table */
.blog-price-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0;
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  padding: 12px 20px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--gray-50); }

.price-row--header {
  background: var(--navy-dark) !important;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-row:not(.price-row--header) span:last-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

.sidebar-cta {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.sidebar-cta h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .88rem; margin-bottom: 20px; line-height: 1.6; }

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8);
  background: transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-navy:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }

.sidebar-posts {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-posts h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.sidebar-posts ul { display: flex; flex-direction: column; gap: 0; }
.sidebar-posts li { border-bottom: 1px solid var(--gray-200); }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a {
  display: block;
  padding: 10px 0;
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
  line-height: 1.4;
}
.sidebar-posts a:hover { color: var(--sky-dark); }

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card--featured { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card-img { height: 220px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-post-body { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 72px; }
  .sidebar-cta { position: static; }
  .price-row { grid-template-columns: 2fr 1fr 1fr; }
  .price-row span:nth-child(2) { display: none; }
  .price-row--header span:nth-child(2) { display: none; }
}


/* ============================================
   SPRING PROMO BANNER
   ============================================ */
.promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1200;
  background: linear-gradient(90deg, var(--sky) 0%, #35b8d4 100%);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px 0 16px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .88rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.promo-banner-inner p { margin: 0; color: var(--navy-dark); }
.promo-banner-inner strong { font-weight: 800; }
.promo-icon { font-size: 1.1rem; }

.promo-cta {
  background: var(--navy-dark);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.promo-cta:hover { background: var(--navy); }

.promo-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--navy-dark);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: .7;
  transition: opacity var(--transition);
}
.promo-close:hover { opacity: 1; }

body.has-promo #header { top: 48px; }
body.has-promo .hero { padding-top: 168px; }

@media (max-width: 600px) {
  .promo-banner { padding: 0 44px 0 12px; height: auto; min-height: 44px; }
  .promo-banner-inner { gap: 6px; flex-wrap: wrap; justify-content: center; padding: 8px 0; }
  .promo-banner-inner p { font-size: .76rem; text-align: center; }
  .promo-cta { display: none; }
  .promo-icon { display: none; }
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy-dark);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--navy-light); }
.faq-question.open { color: var(--sky-dark); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sky);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 4px;
}
.faq-answer.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.75;
  margin: 0;
}
.faq-answer a { color: var(--navy); font-weight: 600; }

/* ============================================
   TOWN LANDING PAGES
   ============================================ */
.town-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2a6e88 100%);
  padding: 140px 0 96px;
  overflow: hidden;
}
.town-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,.025) 60px, rgba(255,255,255,.025) 61px);
  pointer-events: none;
}
.town-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,210,0,.07) 0%, transparent 60%);
}
.town-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.town-hero-content .section-eyebrow { text-align: left; color: var(--sky); }
.town-hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: -.02em; }
.town-hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 560px; line-height: 1.65; }
.town-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.town-intro { background: var(--white); }
.town-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.town-intro-text .section-eyebrow { text-align: left; }
.town-intro-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 20px; text-align: left; }
.town-intro-text p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }

.town-services-list {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.town-services-list h3 { font-size: 1.1rem; color: var(--navy-dark); margin-bottom: 20px; }
.town-services-list ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.town-services-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--gray-700); font-size: .95rem; }
.town-services-list li svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }

.town-contact-box {
  background: var(--navy-dark);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 8px;
}
.town-contact-box p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0 0 4px; line-height: 1.5; }
.town-contact-box strong { color: var(--white); }
.town-contact-box a { color: var(--yellow); font-weight: 700; }

@media (max-width: 768px) {
  .town-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .town-hero-actions { flex-direction: column; }
}

/* ============================================
   SERVICE AREA MAP
   ============================================ */
.area-map {
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--navy);
  background: #B8DEF0;
}
.area-map iframe { display: block; }

.area-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.county {
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.county:hover {
  opacity: 1 !important;
  filter: brightness(1.25);
  cursor: default;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }

.lightbox-close {
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  font-size: 1.6rem;
}

.lightbox-prev,
.lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 2.2rem;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

@media (max-width: 600px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ============================================
   NAV MOBILE CALL BUTTON
   ============================================ */
.nav-mobile-call {
  display: none;
}

@media (max-width: 768px) {
  /* Shrink logo so header fits cleanly */
  .logo-img { height: 44px; }

  .nav-mobile-call {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--yellow);
    color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .78rem;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: .01em;
    margin-right: 8px;
    white-space: nowrap;
  }
  .nav-mobile-call svg { flex-shrink: 0; }
  /* Show phone number on tablets (600-768px) */
  .nav-mobile-call span { display: inline; }
}

/* On phones hide the number — just show the icon */
@media (max-width: 600px) {
  .nav-mobile-call span { display: none; }
  .nav-mobile-call { padding: 9px 11px; }
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0; right: 0;
    z-index: 1100;
    box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  }

  .mobile-cta-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--yellow);
    color: var(--navy-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    padding: 18px 12px;
    text-decoration: none;
    letter-spacing: .01em;
    border-right: 2px solid rgba(0,0,0,.08);
  }

  .mobile-cta-call-sub {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    opacity: .7;
    letter-spacing: .02em;
    margin-top: 1px;
  }

  .mobile-cta-call-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-cta-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-dark);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    padding: 18px 12px;
    text-decoration: none;
    letter-spacing: .01em;
  }

  .mobile-cta-call:active { background: #e6c500; }
  .mobile-cta-quote:active { background: var(--navy); }

  /* Prevent content being hidden behind sticky bar */
  body { padding-bottom: 64px; }
  body.has-promo { padding-bottom: 64px; }
}

/* ============================================
   TESTIMONIAL GOOGLE BADGE
   ============================================ */
.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonial-card-top .stars { margin-bottom: 0; }

.google-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
  padding: 4px 10px;
}

.google-badge span {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}

.author-avatar--lg {
  width: 54px;
  height: 54px;
  font-size: 1rem;
}

.badge-label--year {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1050;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, background .2s;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { background: var(--sky); border-color: var(--sky); }

@media (max-width: 768px) {
  .back-to-top { bottom: 72px; right: 16px; }
}

/* ============================================
   PAGE FADE-IN TRANSITION
   ============================================ */
body {
  animation: pageFadeIn .3s ease-out both;
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.page-exit {
  animation: pageFadeOut .2s ease-in forwards;
}

@keyframes pageFadeOut {
  to { opacity: 0; transform: translateY(-4px); }
}

/* ============================================
   PRINT STYLESHEET
   ============================================ */
@media print {
  .promo-banner, header, .hero, .trust-bar, .how-it-works,
  .services, .gallery, .testimonials, .faq, .cta-banner,
  .service-areas, .back-to-top, .mobile-sticky-cta,
  .footer-bottom, nav, .hero-scroll-hint { display: none !important; }

  body { padding: 0; margin: 0; font-size: 12pt; color: #000; background: #fff; }

  .about, .contact { page-break-inside: avoid; }

  .footer-inner {
    display: block;
    padding: 16px 0;
    border-top: 2px solid #000;
  }

  .footer-contact { color: #000; }
  .footer-contact a { color: #000; text-decoration: none; }

  a[href^="tel"]::after { content: " (" attr(href) ")"; font-size: .85em; color: #333; }
}

/* --- TOWN PAGE ARTICLES LIST --- */
.town-articles {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(30,58,95,.12);
}
.town-articles h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin: 0 0 12px;
}
.town-articles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.town-articles ul li a {
  font-size: .88rem;
  color: var(--sky);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.town-articles ul li a::before {
  content: '→';
  font-size: .8rem;
  color: var(--yellow-dark, #d4a800);
}
.town-articles ul li a:hover { color: var(--navy); text-decoration: underline; }

/* --- BLOG TOWN LINKS GRID --- */
.blog-town-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.blog-town-links a {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gray-50);
  border: 1px solid rgba(30,58,95,.15);
  border-radius: 20px;
  font-size: .82rem;
  color: var(--navy);
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.blog-town-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* --- BREADCRUMB --- */
.breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  font-size: .8rem;
  color: var(--gray-600);
  font-family: 'Open Sans', sans-serif;
}

.breadcrumb-list li[aria-hidden] {
  color: var(--gray-400);
  font-size: .75rem;
}

.breadcrumb-list a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.breadcrumb-list a:hover {
  color: var(--sky-dark);
  text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--gray-700);
  font-weight: 600;
}
