/* =========================================================
   Oregon Hill Construction – oregonhillconstruction.com
   Modern design/build remodeler site
   ========================================================= */

:root {
  /* Forest / Pennsylvania hill country */
  --primary-50: #f0f6f3;
  --primary-100: #d9ebe3;
  --primary-200: #b3d6c7;
  --primary-500: #3d7a62;
  --primary-600: #2d5f4c;
  --primary-700: #1f4a3a;
  --primary-800: #1a3c34;
  --primary-900: #142e28;
  --primary-950: #0c1f1a;

  /* Warm copper / amber CTAs */
  --accent-400: #d4a06a;
  --accent-500: #c17f3e;
  --accent-600: #a86a2e;
  --accent-700: #8a5524;
  --accent-on-dark: #e8c48a;

  --cream: #f7f3ec;
  --cream-dark: #ebe4d6;

  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;

  --white: #ffffff;
  --danger: #dc2626;
  --success: #16a34a;

  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgb(28 25 23 / 0.06);
  --shadow: 0 4px 16px rgb(28 25 23 / 0.08);
  --shadow-lg: 0 20px 40px -12px rgb(28 25 23 / 0.18);
  --header-h: 76px;
  --container: 1140px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}
@media (min-width: 768px) {
  body { padding-bottom: 0; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-700); text-decoration: none; }
a:hover { color: var(--primary-600); }
.prose a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--primary-900);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--accent-500);
  outline-offset: 2px;
}
.btn:focus-visible,
.menu-toggle:focus-visible,
.mobile-callbar a:focus-visible {
  outline: 3px solid var(--primary-950);
  outline-offset: 3px;
}
.hero :focus-visible,
.page-hero :focus-visible,
.cta-banner :focus-visible,
.site-footer :focus-visible,
.topbar :focus-visible {
  outline-color: #fff;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--primary-950);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transform: translateY(-120%);
  transition: transform 0.15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--accent-on-dark);
  outline-offset: 2px;
  color: #fff;
}

/* Top bar */
.topbar {
  background: var(--primary-950);
  color: var(--primary-100);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: var(--white); font-weight: 600; }
.topbar a:hover { color: var(--accent-on-dark); }
.topbar-meta { display: flex; flex-wrap: wrap; gap: 1rem; opacity: 0.92; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  flex-shrink: 0;
}
.logo:hover { color: inherit; }
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--primary-800), var(--primary-600));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 4px 12px rgb(26 60 52 / 0.35);
}
.logo-mark .icon { width: 22px; height: 22px; }
.icon { display: block; flex-shrink: 0; }
.icon-wrap {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.btn .icon-wrap { margin-right: 0.15rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-900);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.logo-text span {
  font-size: 0.68rem;
  color: var(--gray-500);
  margin-top: 1px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  display: none;
  align-items: center;
  gap: 0.1rem;
}
@media (min-width: 960px) {
  .nav { display: flex; }
}
.nav a {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--primary-700);
  background: var(--primary-50);
}
.nav .has-dropdown { position: relative; }
.nav .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 50;
}
.nav .has-dropdown:hover .dropdown,
.nav .has-dropdown:focus-within .dropdown {
  display: block;
}
.nav .dropdown a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 960px) {
  .header-cta { display: flex; }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  color: var(--primary-900);
}
@media (min-width: 960px) {
  .menu-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
  padding: 0.75rem 1.25rem 1.25rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-800);
  font-weight: 600;
}
.mobile-nav .sub a {
  padding-left: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-accent {
  background: var(--accent-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgb(193 127 62 / 0.35);
}
.btn-accent:hover {
  background: var(--accent-700);
  color: var(--white);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .btn-accent:hover { transform: none; }
}
.btn-primary {
  background: var(--primary-700);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-800);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  border-color: rgb(255 255 255 / 0.4);
  color: var(--white);
}
.btn-outline:hover {
  background: rgb(255 255 255 / 0.12);
  color: var(--white);
}
.btn-outline-dark {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--primary-800);
}
.btn-outline-dark:hover {
  border-color: var(--primary-500);
  color: var(--primary-700);
}
.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  border-radius: 12px;
}
.btn-block { width: 100%; }

/* Hero with photo */
.hero {
  position: relative;
  color: var(--white);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(12 31 26 / 0.92) 0%, rgb(26 60 52 / 0.78) 48%, rgb(12 31 26 / 0.45) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-on-dark);
  margin-bottom: 1rem;
  background: rgb(0 0 0 / 0.25);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgb(232 196 138 / 0.25);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  max-width: 16ch;
  margin-bottom: 1rem;
  font-weight: 650;
}
.hero .lead {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.85);
}
.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-display);
}

/* Trust bar */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  text-align: center;
  padding: 0.5rem;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--primary-800);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section-sm { padding: 2.5rem 0; }
.bg-muted { background: var(--cream); }
.bg-dark {
  background: var(--primary-950);
  color: var(--primary-100);
}
.bg-dark h2,
.bg-dark h3 { color: var(--white); }
.bg-dark .text-muted { color: rgb(255 255 255 / 0.7); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin: 0;
}
.section-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: 0.5rem;
}

/* Cards / services */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: inherit;
  border-color: var(--primary-200);
}
@media (prefers-reduced-motion: reduce) {
  a.card:hover { transform: none; }
}
.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--gray-200);
}
.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-body p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  flex: 1;
}
.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.65rem;
  width: fit-content;
}
.card-link {
  font-weight: 700;
  color: var(--accent-600);
  font-size: 0.9rem;
}
a.card:hover .card-link { color: var(--accent-700); }

/* Feature / process */
.process-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  position: relative;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.process-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-500);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600);
}

/* About split */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .split-reverse { direction: rtl; }
  .split-reverse > * { direction: ltr; }
}
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.15rem); }
.highlight { color: var(--primary-700); font-weight: 600; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  color: var(--gray-700);
}
.checklist li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--primary-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f4a3a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/0.7rem no-repeat;
}
.rounded-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.rounded-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.testimonial blockquote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0;
  color: var(--accent-500);
  display: block;
  margin-bottom: 0.75rem;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--primary-800);
  font-size: 0.95rem;
}
.testimonial .role {
  display: block;
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* CTA banner */
.cta-banner {
  background:
    linear-gradient(120deg, var(--primary-950) 0%, var(--primary-800) 55%, var(--primary-700) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgb(255 255 255 / 0.88);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(135deg, var(--primary-950) 0%, var(--primary-800) 100%);
  color: var(--white);
  padding: 2.75rem 0 3rem;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.page-hero p {
  color: rgb(255 255 255 / 0.85);
  max-width: 52ch;
  margin: 0;
  font-size: 1.05rem;
}
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: rgb(255 255 255 / 0.65);
}
.breadcrumb a { color: var(--accent-on-dark); }
.breadcrumb a:hover { color: var(--white); }

/* Project detail */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.8);
}
.project-meta strong { color: var(--white); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.gallery img:hover {
  box-shadow: var(--shadow);
  opacity: 0.95;
}
.gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgb(0 0 0 / 0.9);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox img {
  max-width: min(96vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.15);
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-close:hover { background: rgb(255 255 255 / 0.28); }

/* Contact */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  margin: 0;
}
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-list strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin-bottom: 0.15rem;
}
.contact-list a {
  font-weight: 700;
  color: var(--primary-800);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gray-300);
  border-radius: 10px;
  font: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgb(61 122 98 / 0.18);
  outline: none;
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-hint {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin: 0.75rem 0 0;
}

/* Service area chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.area-chips li {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-800);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-950);
  color: rgb(255 255 255 / 0.78);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.925rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand .logo-mark {
  margin-bottom: 0.85rem;
}
.site-footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.site-footer a {
  color: rgb(255 255 255 / 0.78);
}
.site-footer a:hover { color: var(--accent-on-dark); }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li { margin-bottom: 0.45rem; }
.footer-brand p { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.55);
}

/* Mobile call bar */
.mobile-callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: var(--primary-950);
  border-top: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: 0 -4px 20px rgb(0 0 0 / 0.2);
}
@media (min-width: 768px) {
  .mobile-callbar { display: none; }
}
.mobile-callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 0.5rem;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.mobile-callbar a:first-child {
  background: var(--accent-500);
}
.mobile-callbar a:hover { color: var(--white); }

/* Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--gray-600); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.prose { max-width: 68ch; }
.prose h2 { margin-top: 1.75rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.35rem; font-size: 1.2rem; }

/* Service icon cards without photos */
.icon-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
}
a.icon-card {
  display: block;
  color: inherit;
}
a.icon-card:hover {
  border-color: var(--primary-300, var(--primary-200));
  box-shadow: var(--shadow);
  color: inherit;
}
.icon-card .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-700);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.icon-card h3 { font-size: 1.15rem; }
.icon-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
