/* Rivers Edge Painting — Titusville, FL */

:root {
  /* Slightly brighter teal than before: easier white-on-teal (buttons, footer) and less “muddy.” */
  --river-deep: #1c4254;
  --river: #358f97;
  --river-light: #52a8b0;
  --sand: #f4f1eb;
  --cream: #faf9f6;
  --ink: #1c1c1c;
  --muted: #5c6568;
  --white: #ffffff;
  --accent: #c4a35a;
  --shadow: 0 12px 40px rgba(26, 58, 74, 0.12);
  --radius: 12px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--river);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Sand-tinted bar: warmer and less stark than pure cream/white */
  background: rgba(244, 241, 235, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 74, 0.055);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.logo:hover {
  text-decoration: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.logo-mark {
  flex-shrink: 0;
  height: 2.75rem;
  width: auto;
  max-width: min(11rem, 42vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--river-deep);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.logo-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: none;
  background: var(--river-deep);
  color: var(--white);
  padding: 0.6rem 1rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.nav-list a:hover {
  color: var(--river);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-dropdown__caret {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.2rem;
  opacity: 0.75;
  transition: transform 0.2s ease, margin 0.2s ease;
}

.nav-dropdown__panel {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown__caret,
  .nav-dropdown:focus-within .nav-dropdown__caret {
    transform: rotate(225deg);
    margin-top: 0.15rem;
  }

  .nav-dropdown__panel {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    min-width: 15.5rem;
    background: var(--white);
    border: 1px solid rgba(26, 58, 74, 0.1);
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(26, 58, 74, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    z-index: 120;
  }

  .nav-dropdown:hover .nav-dropdown__panel,
  .nav-dropdown:focus-within .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown__panel a {
    display: block;
    padding: 0.55rem 1.15rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: -0.015em;
    color: var(--ink);
  }

  .nav-dropdown__panel a:hover {
    background: var(--sand);
    color: var(--river-deep);
    text-decoration: none;
  }

  .nav-dropdown__panel a[aria-current="page"] {
    color: var(--river-deep);
    background: rgba(53, 143, 151, 0.12);
  }
}

@media (max-width: 768px) {
  .nav-dropdown__panel {
    display: none;
    padding: 0.15rem 0 0.35rem 0.85rem;
    margin: 0.25rem 0 0.15rem;
    border-left: 2px solid var(--river);
  }

  .nav-dropdown.is-open .nav-dropdown__panel {
    display: block;
  }

  .nav-dropdown__panel li:last-child a {
    border-bottom: none;
  }

  .nav-dropdown__panel a {
    display: block;
    padding: 0.55rem 0;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(26, 58, 74, 0.07);
    color: var(--ink);
  }

  .nav-dropdown__trigger {
    width: 100%;
    justify-content: space-between;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--river);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(53, 143, 151, 0.32);
}

.btn-primary:hover {
  background: var(--river-light);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(53, 143, 151, 0.38);
}

a.btn-primary,
a.btn-primary:hover,
button.btn-primary,
button.btn-primary:hover {
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--river-deep);
  border: 2px solid var(--river-deep);
}

.btn-outline:hover {
  background: var(--river-deep);
  color: var(--white);
  text-decoration: none;
}

/* Hero + project slideshow */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.hero--slideshow {
  display: flex;
  align-items: center;
  min-height: min(88vh, 860px);
  padding: clamp(5.5rem, 14vh, 8rem) 0 clamp(3rem, 7vh, 5rem);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--river-deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  will-change: transform;
}

.hero-slide.is-active .hero-slide-img {
  animation: heroKenBurns 9s ease-out forwards;
}

.hero-slide:not(.is-active) .hero-slide-img {
  animation: none;
  transform: scale(1);
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active .hero-slide-img {
    animation: none;
  }

  .hero-slide {
    transition-duration: 0.4s;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      105deg,
      rgba(15, 35, 45, 0.88) 0%,
      rgba(15, 35, 45, 0.55) 42%,
      rgba(26, 58, 74, 0.45) 100%
    ),
    linear-gradient(to top, rgba(15, 35, 45, 0.5) 0%, transparent 45%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Extra horizontal breathing room for hero copy (full-bleed slideshow, inset text) */
.hero--slideshow .hero-inner {
  box-sizing: border-box;
  width: min(1120px, 100%);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 6vw, 3rem);
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 4.8vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 1rem;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  font-size: 1.125rem;
  max-width: 38ch;
  opacity: 0.96;
  margin: 0 0 1.25rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}

.hero-google {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0 0 1.65rem;
  padding: 0.45rem 0.85rem 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hero-google:hover {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  text-decoration: none;
}

.hero-google-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.hero-google-text strong {
  font-weight: 800;
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn-primary {
  background: var(--white);
  color: var(--river-deep);
  box-shadow: var(--shadow);
}

.hero-actions .btn-primary:hover {
  background: var(--sand);
  color: var(--river-deep);
}

.hero-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

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

/* Hero copy: staggered entrance (skipped when reduced motion is on) */
@media (prefers-reduced-motion: no-preference) {
  .hero--slideshow .hero-inner > * {
    opacity: 0;
    animation: heroReveal 0.78s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero--slideshow .hero-inner > *:nth-child(1) {
    animation-delay: 0.05s;
  }

  .hero--slideshow .hero-inner > *:nth-child(2) {
    animation-delay: 0.12s;
  }

  .hero--slideshow .hero-inner > *:nth-child(3) {
    animation-delay: 0.2s;
  }

  .hero--slideshow .hero-inner > *:nth-child(4) {
    animation-delay: 0.28s;
  }

  .hero--slideshow .hero-inner > *:nth-child(5) {
    animation-delay: 0.36s;
  }

  .hero--slideshow .hero-inner > *:nth-child(6) {
    animation-delay: 0.42s;
  }
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--slideshow .hero-inner > * {
    animation: none;
    opacity: 1;
  }
}

/* Sections */
section {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--river-deep);
  margin: 0 0 0.5rem;
}

.section-intro {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 2.5rem;
}

.online-quote-cta {
  margin: -1.5rem 0 2rem;
  max-width: 52ch;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.online-quote-cta a {
  font-weight: 800;
  color: var(--river);
}

.online-quote-cta a:hover {
  color: var(--river-deep);
}

.section-title--flush {
  margin-top: 0;
}

/* Services hub (Our Services section on homepage) */
.services {
  background: var(--sand);
}

.what-we-do {
  background: var(--sand);
}

.what-we-do-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.what-we-do-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 58, 74, 0.08);
  box-shadow: 0 2px 14px rgba(26, 58, 74, 0.06);
  text-decoration: none;
  color: inherit;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.what-we-do-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 58, 74, 0.1);
  border-color: rgba(45, 106, 111, 0.22);
  text-decoration: none;
}

.what-we-do-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--river), var(--river-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-do-link:hover .what-we-do-icon {
  transform: scale(1.06);
}

.what-we-do-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.what-we-do-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin-bottom: 0.2rem;
}

.what-we-do-desc {
  display: block;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.what-we-do-go {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--river);
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.what-we-do-link:hover .what-we-do-go {
  transform: translateX(5px);
}

@media (max-width: 520px) {
  .what-we-do-link {
    flex-wrap: wrap;
    padding: 1rem 1rem 1rem 1.1rem;
  }

  .what-we-do-go {
    width: 100%;
    text-align: right;
    margin-top: -0.25rem;
  }
}

.services--flush-top {
  padding-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.06);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 0.75rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--river), var(--river-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-icon,
a.service-card--link:hover .service-icon {
  transform: scale(1.06) rotate(-2deg);
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--river);
}

.why-list strong {
  color: var(--river-deep);
  font-weight: 700;
}

.why-aside {
  background: var(--river-deep);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-aside h3 {
  font-family: var(--font-sans);
  margin: 0 0 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.why-aside p {
  margin: 0;
  opacity: 0.92;
  font-size: 0.98rem;
}

/* Homepage: featured Google reviews (Robert Jones–style cards) */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--river);
  margin: 0 0 0.65rem;
}

.reviews-section {
  background: var(--sand);
}

.reviews-section-intro {
  margin-bottom: 2rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 0 2.25rem;
  padding: 0;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 36rem;
    margin-inline: auto;
  }
}

.review-card {
  margin: 0;
  padding: 1.5rem 1.45rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 58, 74, 0.07);
  box-shadow: 0 4px 22px rgba(26, 58, 74, 0.07);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

@media (prefers-reduced-motion: reduce) {
  .review-card {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(26, 58, 74, 0.11);
    border-color: rgba(45, 106, 111, 0.18);
  }
}

.review-card-stars {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: #c4a35a;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.review-card-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  border: none;
  flex: 1;
}

.review-card-quote p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  font-style: normal;
}

.review-card-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(26, 58, 74, 0.08);
}

.review-card-avatar {
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--river-deep), var(--river));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-who {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.review-card-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--river-deep);
}

.review-card-meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

.reviews-actions .btn {
  text-decoration: none;
}

.reviews-actions .btn:hover {
  text-decoration: none;
}

@media (max-width: 520px) {
  .reviews-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-actions .btn {
    text-align: center;
  }
}

/* Areas */
.areas {
  background: var(--cream);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.area-tags li {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--river-deep);
  border: 1px solid rgba(26, 58, 74, 0.1);
}

.area-tags a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.area-tags a:hover {
  color: var(--river);
  text-decoration: none;
}

.area-tags li[aria-current="page"] {
  background: linear-gradient(
    135deg,
    rgba(28, 66, 84, 0.09) 0%,
    rgba(53, 143, 151, 0.12) 100%
  );
  border-color: rgba(45, 106, 111, 0.35);
  font-weight: 800;
}

/* Breadcrumb inside homepage-style hero (location landing pages) */
.hero-inner .breadcrumb {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.08);
}

.contact-card h3 {
  font-family: var(--font-sans);
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-item a,
.contact-item span {
  font-size: 1.1rem;
  color: var(--river-deep);
  font-weight: 600;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.hours-block {
  margin: 0;
  color: var(--muted);
}

.contact-cta {
  margin-top: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--river-deep);
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0 2.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 2.25rem 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-cta-col {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: minmax(12rem, 1.15fr) minmax(9rem, 0.85fr) minmax(11rem, 1fr) auto;
    gap: 2rem 2.75rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-cta-col {
    grid-column: auto;
    justify-self: end;
    text-align: right;
    padding-left: 2rem;
    margin-left: 0.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }
}

.footer-brand-link {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-brand-link:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tagline {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  max-width: 22rem;
}

.footer-copyright {
  margin: 1rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
}

.footer-legal a {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

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

.footer-license-num {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 22rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}

.site-footer .btn-footer-cta,
.site-footer .btn-footer-cta:hover {
  color: var(--river-deep);
}

.footer-nav-title {
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.48);
}

.footer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-list a {
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
}

.footer-nav-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav-list a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav-list--areas {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem 1.25rem;
}

@media (min-width: 480px) {
  .footer-nav-list--areas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--river-deep);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-footer-cta:hover {
  background: var(--sand);
  color: var(--river-deep);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.btn-footer-cta[aria-current="page"] {
  background: rgba(255, 255, 255, 0.9);
}

.location-service-list {
  margin: 0 0 2rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.85;
}

.location-service-list a {
  font-weight: 700;
  color: var(--river-deep);
}

.location-service-list a:hover {
  color: var(--river);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    border-bottom: 1px solid rgba(26, 58, 74, 0.08);
    padding: 1rem;
    display: none;
  }

  .nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list li {
    border-bottom: 1px solid rgba(26, 58, 74, 0.08);
  }

  .nav-list li:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
  }

  .nav-list .btn {
    width: 100%;
    text-align: center;
  }

  .site-header {
    position: relative;
  }
}

/* Inner pages (services, etc.) */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: linear-gradient(
    135deg,
    rgba(28, 66, 84, 0.93) 0%,
    rgba(53, 143, 151, 0.88) 52%,
    rgba(28, 66, 84, 0.9) 100%
  );
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.8vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}

.page-hero-lead {
  margin: 0;
  font-size: 1.05rem;
  max-width: 48ch;
  opacity: 0.94;
}

.page-hero-lead a {
  color: rgba(255, 255, 255, 0.98);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hero-lead a:hover {
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  font-size: 0.85rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.75);
}

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

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

.breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.85);
}

.service-page {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.service-page .container > h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 2.25rem 0 0.75rem;
}

.service-page .container > h2:first-of-type {
  margin-top: 0;
}

.service-page .container > p {
  margin: 0 0 1rem;
  color: var(--muted);
  max-width: 65ch;
}

.service-page .container > ul {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--muted);
  max-width: 65ch;
}

.service-page .container > ul li {
  margin-bottom: 0.5rem;
}

/* Service pages: spotlight strip + feature cards + process */
.service-spotlight {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin: 0 0 2rem;
  padding: 1.2rem 1.25rem;
  background: var(--sand);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 58, 74, 0.07);
}

@media (max-width: 720px) {
  .service-spotlight {
    grid-template-columns: 1fr;
  }
}

.service-spotlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-spotlight-icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--river), var(--river-light));
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.service-spotlight-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--river-deep);
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.service-spotlight-text span {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin: 0 0 2.25rem;
}

@media (max-width: 820px) {
  .service-features {
    grid-template-columns: 1fr;
    max-width: 26rem;
    margin-inline: auto;
  }
}

.service-feature-card {
  background: var(--white);
  padding: 1.35rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 58, 74, 0.08);
  box-shadow: 0 4px 22px rgba(26, 58, 74, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .service-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 34px rgba(26, 58, 74, 0.1);
    border-color: rgba(45, 106, 111, 0.2);
  }
}

.service-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--river), var(--river-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}

.service-feature-card h3 {
  font-family: var(--font-sans);
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
}

.service-feature-card p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

.service-process {
  margin: 0 0 2.25rem;
  padding: 1.65rem 1.35rem 1.75rem;
  background: var(--river-deep);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-process-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0 0 1.2rem;
  color: var(--white);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem 1rem;
}

@media (max-width: 900px) {
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .service-process-grid {
    grid-template-columns: 1fr;
  }
}

.service-process-step {
  padding: 0.15rem 0;
}

.service-process-num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid rgba(82, 168, 176, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.service-process-step h3 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
  color: var(--white);
}

.service-process-step p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
}

.service-page .container > ul.service-client-pills {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-page .container > ul.service-client-pills li {
  margin: 0;
  padding: 0.45rem 0.95rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--river-deep);
  border: 1px solid rgba(26, 58, 74, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.service-faq {
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 58, 74, 0.1);
}

.service-faq-more {
  margin: 1.2rem 0 0;
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 52ch;
}

.service-faq-more a {
  font-weight: 700;
}

.service-related {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 58, 74, 0.1);
}

.service-related h2 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 1rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.related-links a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--sand);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--river-deep);
  border: 1px solid rgba(26, 58, 74, 0.1);
}

.related-links a:hover {
  background: var(--white);
  text-decoration: none;
  border-color: var(--river);
  color: var(--river);
}

/* Our work gallery */
.work-main {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
}

.work-gallery {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 560px) {
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .work-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.work-gallery__item {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.08);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
}

.work-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(26, 58, 74, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .work-gallery__item {
    transition: none;
  }

  .work-gallery__item:hover {
    transform: none;
  }
}

.work-gallery__open {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
  border-radius: inherit;
  position: relative;
}

.work-gallery__open:focus {
  outline: none;
}

.work-gallery__open:focus-visible {
  outline: 3px solid var(--river);
  outline-offset: 2px;
}

.work-gallery__open img {
  width: 100%;
  height: auto;
  aspect-ratio: 1094 / 708;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .work-gallery__item:hover .work-gallery__open img {
    transform: scale(1.03);
  }
}

.work-gallery__open::after {
  content: "Expand";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--river-deep);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  border: 1px solid rgba(26, 58, 74, 0.1);
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(26, 58, 74, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .work-gallery__open::after {
    content: "View";
  }
}

/* Lightbox (our work) */
.work-lightbox.is-hidden {
  display: none !important;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.work-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(12, 22, 28, 0.88);
  cursor: zoom-out;
}

.work-lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: min(92vh, 900px);
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.work-lightbox__img {
  display: block;
  max-width: min(96vw, 1200px);
  max-height: min(92vh, 900px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.work-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 10px;
  background: rgba(28, 66, 84, 0.92);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  transition: background 0.15s ease;
}

.work-lightbox__close:hover {
  background: var(--river-deep);
}

.work-lightbox__close:focus-visible {
  outline: 3px solid var(--river-light);
  outline-offset: 2px;
}

.work-cta {
  margin-top: 2.75rem;
}

/* Privacy policy & 404 */
.legal-main,
.not-found-main {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
}

.legal-prose,
.not-found-prose {
  max-width: 52rem;
}

.legal-prose h2,
.not-found-prose h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 2rem 0 0.75rem;
}

.legal-prose h2:first-child,
.not-found-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p,
.not-found-prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.legal-prose ul {
  margin: 0 0 1.25rem;
  padding-left: 1.35rem;
  color: var(--muted);
}

.legal-prose li {
  margin-bottom: 0.45rem;
}

.legal-cta {
  margin-top: 2.5rem;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.not-found-actions .btn {
  text-decoration: none;
}

.not-found-actions .btn:hover {
  text-decoration: none;
}

/* Scroll-triggered fades (class `js-reveal` added by site.js; no class = fully visible) */
.js-reveal {
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal:not(.is-visible) {
    opacity: 0;
    transform: translateY(1.1rem);
  }
}

.js-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal,
  .js-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.page-cta {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--river-deep);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.page-cta p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  max-width: 36ch;
}

.page-cta .btn-primary {
  background: var(--white);
  color: var(--river-deep);
  box-shadow: var(--shadow);
}

.page-cta .btn-primary:hover {
  background: var(--sand);
  color: var(--river-deep);
}

/* Service cards as links (homepage + hub) */
a.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

a.service-card--link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 58, 74, 0.14);
  text-decoration: none;
}

a.service-card--link .service-more {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
  color: var(--river);
}

a.service-card--link:hover .service-more {
  text-decoration: underline;
}

.nav-list--wrap {
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

@media (min-width: 900px) {
  .nav-list--wrap {
    gap: 1.25rem 1.5rem;
  }
}

/* Free quote / estimate form (quotes.html) */
.quote-section {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .quote-layout {
    grid-template-columns: 1fr min(22rem, 32vw);
    gap: 2.5rem;
  }
}

.quote-form {
  position: relative;
  background: var(--white);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.08);
}

.quote-form-title {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 0.5rem;
}

.quote-form-intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 50ch;
}

.quote-form-intro abbr {
  text-decoration: none;
  color: var(--river);
  font-weight: 700;
}

.quote-form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

@media (min-width: 520px) {
  .quote-form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-field {
  margin-bottom: 1rem;
}

.quote-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--river-deep);
  margin-bottom: 0.4rem;
}

.quote-field label abbr {
  text-decoration: none;
  color: var(--river);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid rgba(26, 58, 74, 0.15);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--river);
  box-shadow: 0 0 0 3px rgba(45, 106, 111, 0.2);
  background: var(--white);
}

.quote-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.quote-form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  font-size: 1rem;
}

.quote-form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-form-alert {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm, 6px);
  background: #fde8e8;
  color: #7a1f1f;
  font-size: 0.95rem;
}

.quote-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-side-card {
  background: var(--white);
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.08);
}

.quote-side-card--muted {
  background: var(--sand);
  border-color: rgba(26, 58, 74, 0.06);
}

.quote-side-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 1.1rem;
}

.quote-side-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--river-deep);
  margin: 0 0 0.85rem;
}

.quote-side-block {
  margin-bottom: 1rem;
}

.quote-side-block:last-of-type {
  margin-bottom: 0;
}

.quote-side-block strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.quote-side-block a {
  font-weight: 700;
  color: var(--river-deep);
  font-size: 1.05rem;
}

.quote-side-hours {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.quote-side-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.quote-side-list li {
  margin-bottom: 0.45rem;
}

/* Thank-you page (after quote form submit) */
.thank-you-section {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cream);
}

.thank-you-card {
  max-width: 38rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 58, 74, 0.08);
}

.thank-you-card-title {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 1rem;
}

.thank-you-list {
  margin: 0 0 1.75rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.thank-you-list li {
  margin-bottom: 0.5rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.thank-you-footnote {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.thank-you-footnote a {
  font-weight: 600;
}

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

/* FAQ page (expandable accordions) */
.faq-main {
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--cream);
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category:last-of-type {
  margin-bottom: 0;
}

.faq-category-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--river);
}

.faq-accordions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-details {
  border: 1px solid rgba(26, 58, 74, 0.12);
  border-radius: 10px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(26, 58, 74, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-details[open] {
  border-color: rgba(45, 106, 111, 0.28);
  box-shadow: 0 8px 28px rgba(26, 58, 74, 0.08);
}

.faq-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--river-deep);
  line-height: 1.35;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::marker {
  content: "";
}

.faq-summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--river);
  border-bottom: 2px solid var(--river);
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin 0.2s ease;
  opacity: 0.85;
}

.faq-details[open] > .faq-summary::after {
  transform: rotate(225deg);
  margin-top: 0.15rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-summary::after,
  .faq-details {
    transition: none;
  }
}

.faq-summary:hover {
  color: var(--river);
}

.faq-summary:focus {
  outline: none;
}

.faq-summary:focus-visible {
  outline: 2px solid var(--river);
  outline-offset: 2px;
  border-radius: 6px;
}

.faq-panel {
  padding: 0 1.2rem 1.15rem;
  border-top: 1px solid rgba(26, 58, 74, 0.07);
}

.faq-panel p {
  margin: 0;
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.62;
  max-width: 68ch;
}

.faq-cta {
  margin-top: 2.5rem;
}

/* Blog (PHP under /blog/) — list + article */
.blog-main {
  background: var(--white);
}

.blog-main--index {
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* Thin top bar (roofing blog reference) */
.blog-index-topbar {
  height: 4px;
  width: 100%;
  background: var(--river-deep);
}

/* Index masthead */
.blog-index-hero {
  padding: clamp(0.75rem, 2vw, 1.1rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  background: var(--white);
}

.blog-index-breadcrumb {
  margin-bottom: 1rem;
}

.blog-index-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--river);
}

.blog-index-title {
  margin: 0 0 0.85rem;
  max-width: 28ch;
  font-size: clamp(1.65rem, 4.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--river-deep);
}

.blog-index-deck {
  margin: 0;
  max-width: 72ch;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 500;
}

/* Card wall */
.blog-tile-wall {
  padding: 0 0 clamp(2rem, 4vw, 3rem);
  background: var(--white);
}

.blog-tile-empty {
  margin: 0;
  padding: 2.25rem 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  border: 1px dashed rgba(26, 58, 74, 0.15);
  border-radius: var(--radius);
}

.blog-tile-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.35rem, 2.5vw, 2rem);
}

@media (max-width: 1200px) {
  .blog-tile-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .blog-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (max-width: 520px) {
  .blog-tile-grid {
    grid-template-columns: 1fr;
  }
}

.blog-tile-cell {
  margin: 0;
  min-width: 0;
}

.blog-tile {
  margin: 0;
  height: 100%;
}

.blog-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.blog-tile__link:hover {
  opacity: 0.92;
}

.blog-tile__media {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 0 0.85rem;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand);
}

.blog-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.blog-tile__link:hover .blog-tile__img {
  transform: scale(1.06);
}

.blog-tile__img--placeholder {
  background: linear-gradient(135deg, var(--river-deep) 0%, var(--river) 50%, var(--river-light) 100%);
}

.blog-tile__date {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--river);
}

.blog-tile__title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.78rem, 1.35vw, 0.88rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--river-deep);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-tile__excerpt {
  margin: 0;
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-tile__link:hover .blog-tile__title {
  color: var(--river);
}

.blog-article-hero .blog-article-meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.blog-article-body {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem);
  max-width: 42rem;
}

.blog-article-footer {
  padding-bottom: clamp(3rem, 6vw, 4rem);
}

.rivers-prose {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.rivers-prose p {
  margin: 0 0 1.1rem;
}

.rivers-prose h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--river-deep);
  margin: 2rem 0 0.75rem;
}

.rivers-prose h2:first-child {
  margin-top: 0;
}

.rivers-prose ul,
.rivers-prose ol {
  margin: 0 0 1.1rem;
  padding-left: 1.35rem;
}

.rivers-prose li {
  margin-bottom: 0.4rem;
}

.rivers-prose a {
  color: var(--river);
  font-weight: 600;
}
