/* Ornery Horse Excavation - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300&display=swap');

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

:root {
  --amber: #C89A2A;
  --amber-hover: #A67D20;
  --dark: #1a1a1a;
  --dark-alt: #111111;
  --text-light: #f5f0e8;
  --text-muted: #b0a898;
  --border-light: #333;
  --section-bg: #1e1e1e;
  --card-bg: #242424;
}

body {
  margin: 0;
  font-family: 'Source Serif 4', Georgia, serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.accent-bar {
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--amber);
  margin-bottom: 1.25rem;
}

/* ========== BUTTONS ========== */
.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-amber:hover { background: var(--amber-hover); transform: translateY(-1px); color: #111; }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(245,240,232,0.9);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 2px solid rgba(245,240,232,0.5);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }

/* ========== TOP BAR ========== */
.top-bar {
  background: #111;
  color: var(--amber);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.top-bar a { color: var(--amber); text-decoration: none; }
.top-bar a:hover { text-decoration: underline; }
.top-bar svg, .top-bar img { vertical-align: middle; margin-right: 0.4rem; }

/* ========== HEADER / NAV ========== */
header {
  background: rgba(20, 18, 14, 0.97);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(200, 154, 42, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo span { display: block; color: var(--amber); font-size: 0.75rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(245,240,232,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--amber); }

/* Services dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(200,154,42,0.3);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 200;
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(245,240,232,0.8);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: rgba(200,154,42,0.1); color: var(--amber); }
.nav-dropdown:hover .dropdown-menu { display: block; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--dark-alt);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 700px;
}
.hero h1 span { color: var(--amber); display: block; }
.hero p {
  color: rgba(245,240,232,0.8);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.7);
}
.trust-badge .check {
  width: 1.25rem;
  height: 1.25rem;
  background: var(--amber);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ========== WHY US ========== */
.why-us {
  background: var(--dark);
  padding: 5rem 1.5rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.why-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(200,154,42,0.15);
  border: 1px solid rgba(200,154,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.why-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0 0 0.75rem;
}
.why-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* ========== SERVICES SECTION ========== */
.services {
  padding: 5rem 1.5rem;
  background: #f8f6f2;
}
.services .section-header h2 { color: #1a1a2e; }
.services .section-header p { color: #555; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 1px solid #e0ddd6;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); transform: translateY(-3px); }
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
}
.service-card-body p { color: #555; font-size: 0.95rem; line-height: 1.65; margin: 0 0 1rem; }
.service-uses { margin: 1rem 0; }
.service-uses strong {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 0.5rem;
}
.service-uses ul { list-style: none; padding: 0; margin: 0; }
.service-uses li {
  padding: 0.2rem 0;
  color: #444;
  font-size: 0.9rem;
}
.service-uses li::before { content: '› '; color: var(--amber); font-weight: bold; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--amber-hover);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s, gap 0.2s;
}
.service-link:hover { color: var(--amber); gap: 0.6rem; }

/* ========== ABOUT SECTION ========== */
.about {
  background: var(--dark);
  padding: 5rem 1.5rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media(max-width: 768px) { .about-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.about-content .accent-bar { margin-bottom: 1.25rem; }
.about-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.about-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #fff;
  margin: 0 0 1.25rem;
  line-height: 1.1;
}
.about-content h2 span { color: var(--amber); }
.about-content p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin: 0 0 1rem; }
.about-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-list li:last-child { border-bottom: none; }
.about-list .check {
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(200,154,42,0.2);
  border: 1px solid rgba(200,154,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(200,154,42,0.2);
}

/* ========== CONTACT FORM ========== */
.contact {
  padding: 5rem 1.5rem;
  background: #f8f6f2;
}
.contact .section-header h2 { color: #1a1a2e; }
.contact .section-header p { color: #555; }

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
@media(max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-wrap {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid #e0ddd6;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.contact-form-wrap h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: #1a1a2e;
  margin: 0 0 1.5rem;
  letter-spacing: 0.05em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media(max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  background: #fafafa;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--amber); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-info-wrap { padding: 1rem 0; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e0ddd6;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(200,154,42,0.15);
  border: 1px solid rgba(200,154,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-item h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.25rem;
}
.contact-info-item a, .contact-info-item p {
  font-size: 1rem;
  color: #1a1a2e;
  margin: 0;
  text-decoration: none;
  display: block;
}
.contact-info-item a:hover { color: var(--amber-hover); }
.contact-info-item small { color: #888; font-size: 0.85rem; }

.call-box {
  background: var(--amber);
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.call-box p { font-family: 'Oswald', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: #111; margin: 0 0 0.5rem; }
.call-box a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ========== SERVICE AREAS ========== */
.service-areas {
  background: var(--dark);
  padding: 5rem 1.5rem;
}
.service-areas .section-header { max-width: 1200px; margin-left: auto; margin-right: auto; text-align: left; }
.service-areas .section-header h2 { color: #fff; }
.service-areas .section-header p { color: var(--text-muted); margin: 0; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}
.area-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.25s;
}
.area-card:hover { border-color: var(--amber); }
.area-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #fff;
  margin: 0 0 0.25rem;
}
.area-sub { color: var(--text-muted); font-size: 0.8rem; margin: 0; }

/* ========== FOOTER ========== */
footer {
  background: #0d0d0d;
  color: var(--text-muted);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(200,154,42,0.2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
@media(max-width: 768px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 0.5rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; color: var(--text-muted); margin: 0 0 1rem; max-width: 300px; }
.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: none;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.9rem; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { margin: 0; font-size: 0.85rem; color: #666; }

/* ========== SERVICE PAGE HERO ========== */
.service-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: var(--dark-alt);
  overflow: hidden;
}
.service-hero .hero-content { padding: 3rem 1.5rem; }

/* Fix: service hero text must be white on dark background */
.service-hero .hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1.25rem;
  max-width: 700px;
}
.service-hero .hero-content h1 span { color: var(--amber); display: block; }
.service-hero .hero-content > p {
  color: rgba(245,240,232,0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 0 2rem;
  line-height: 1.65;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(245,240,232,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { color: var(--amber); }

/* ========== SERVICE DETAIL ========== */
.service-detail {
  padding: 5rem 1.5rem;
  background: #fff;
}
.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
@media(max-width: 900px) { .service-detail-inner { grid-template-columns: 1fr; } }

.service-detail-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #1a1a2e;
  margin: 0 0 1rem;
}
.service-detail-content p { color: #444; font-size: 1rem; line-height: 1.75; margin: 0 0 1rem; }
.service-benefits-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.service-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #444;
  font-size: 0.97rem;
  border-bottom: 1px solid #f0eee9;
}
.service-benefits-list li:last-child { border-bottom: none; }
.service-benefits-list .check {
  width: 1.1rem;
  height: 1.1rem;
  background: var(--amber);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.sidebar-cta {
  background: var(--dark);
  padding: 2rem;
  border: 1px solid rgba(200,154,42,0.3);
  position: sticky;
  top: 100px;
}
.sidebar-cta h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 1rem;
}
.sidebar-cta p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1.5rem; }
.sidebar-contact { margin-top: 1.5rem; }
.sidebar-contact-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); color: var(--text-muted); font-size: 0.9rem; }
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item a { color: var(--amber); text-decoration: none; }
.sidebar-contact-item a:hover { text-decoration: underline; }

/* ========== RELATED SERVICES ========== */
.related-services {
  background: #f8f6f2;
  padding: 4rem 1.5rem;
}
.related-services h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: #1a1a2e;
  margin: 0 0 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.related-card {
  background: #fff;
  border: 1px solid #e0ddd6;
  padding: 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.related-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.related-card p { color: #666; font-size: 0.85rem; margin: 0 0 0.75rem; }
.related-card span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-hover);
  font-weight: 600;
}

/* ========== THANKS PAGE ========== */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-alt);
  padding: 4rem 1.5rem;
  text-align: center;
}
.thanks-inner { max-width: 600px; }
.thanks-icon { font-size: 4rem; margin-bottom: 1.5rem; }
.thanks-inner h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 0 1rem;
}
.thanks-inner h1 span { color: var(--amber); }
.thanks-inner p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin: 0 0 2rem; }

/* ========== ABOUT PAGE ========== */
.about-page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--dark-alt);
  overflow: hidden;
}
.about-page-hero .hero-content { padding: 3rem 1.5rem; }
.about-page-hero .hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.about-page-hero .hero-content h1 span { color: var(--amber); }
.about-page-hero .hero-content > p {
  color: rgba(245,240,232,0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 2rem;
}

.about-page-detail {
  padding: 5rem 1.5rem;
  background: #fff;
}
.about-page-inner {
  max-width: 900px;
  margin: 0 auto;
}
.about-page-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a1a2e;
  margin: 2.5rem 0 1rem;
}
.about-page-inner h2:first-of-type { margin-top: 0; }
.about-page-inner p { color: #444; font-size: 1rem; line-height: 1.8; margin: 0 0 1rem; }

/* ========== CONTACT PAGE ========== */
.contact-page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  background: var(--dark-alt);
  overflow: hidden;
}
.contact-page-hero .hero-content { padding: 3rem 1.5rem; }
.contact-page-hero .hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.contact-page-hero .hero-content h1 span { color: var(--amber); }
.contact-page-hero .hero-content > p {
  color: rgba(245,240,232,0.85);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 0 2rem;
}

.hours-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px solid #f0eee9; font-size: 0.95rem; color: #444; }
.hours-table td:first-child { font-weight: 600; color: #1a1a2e; }

/* ========== RESPONSIVE ========== */
@media(max-width: 767px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: 70vh; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 768px) and (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== SERVICE PAGE ALTERNATING SECTIONS ========== */
.section-dark {
  background: var(--dark);
  color: var(--text-light);
  padding: 4rem 0;
}
.section-dark h2, .section-dark h3 { color: var(--amber); }
.section-dark p, .section-dark li { color: var(--text-muted); }

.section-mid {
  background: var(--section-bg);
  color: var(--text-light);
  padding: 4rem 0;
}
.section-mid h2, .section-mid h3 { color: #fff; }
.section-mid p, .section-mid li { color: var(--text-muted); }

.section-warm {
  background: #f8f6f2;
  color: #1a1a1a;
  padding: 4rem 0;
}
.section-warm h2, .section-warm h3 { color: #1a1a2e; }
.section-warm p, .section-warm li { color: #555; }

/* Service page content sections */
.service-content .section-dark .container,
.service-content .section-mid .container,
.service-content .section-warm .container {
  max-width: 900px;
}

.service-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.service-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.service-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
