/*
Theme Name: Ridge Top Excavating
Theme URI: https://ridgetopexc-lixoiwx3.manus.space
Author: Ridge Top Excavating
Author URI: https://ridgetopexcavating.com
Description: A bold, professional WordPress theme for Ridge Top Excavating — heavy civil construction, earthmoving, site development, demolition, and underground utilities in Champion, PA.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ridge-top-excavating
Tags: construction, excavating, business, one-page, yellow, dark
*/

/* ─── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Roboto:wght@300;400;500;700&display=swap');

/* ─── CSS Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --black: #000000;
  --gray-950: #0a0a0a;
  --gray-900: #111111;
  --gray-800: #1f1f1f;
  --gray-600: #4b4b4b;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --white: #ffffff;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Utility ───────────────────────────────────────────────────────────────── */
.yellow-bar {
  width: 3rem;
  height: 4px;
  background: var(--yellow);
  margin-bottom: 1.25rem;
}
.yellow-bar.center { margin-left: auto; margin-right: auto; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
}

.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); }

/* ─── Top Bar ───────────────────────────────────────────────────────────────── */
.top-bar {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: var(--black); }
.top-bar a:hover { text-decoration: underline; }

/* ─── Navigation ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 5rem; }

.site-logo { display: flex; align-items: center; gap: 0.75rem; }
.site-logo .logo-box {
  width: 2.5rem; height: 2.5rem;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 900; font-size: 1rem; color: var(--black);
}
.site-logo .logo-text { font-family: var(--font-heading); font-weight: 900; font-size: 0.9rem; line-height: 1.2; }
.site-logo .logo-sub { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--yellow); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--yellow); }

.nav-cta {
  background: var(--yellow); color: var(--black) !important;
  font-family: var(--font-heading); font-weight: 900; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.75rem 1.5rem; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; color: var(--black) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ─── Hero ──────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663222441398/LixoiWX3R4pFGznbaAm3qp/hero_excavating-HHZiaVFzPBEDHNJMENuGQ7.webp');
  background-size: cover; background-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3)); }
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 6rem 0; }
.hero-eyebrow { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--yellow); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 3rem; height: 2px; background: var(--yellow); }
.hero-title { font-family: var(--font-heading); font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 900; text-transform: uppercase; line-height: 1; margin-bottom: 1.5rem; }
.hero-title span { color: var(--yellow); }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: rgba(255,255,255,0.5); font-family: var(--font-heading); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll::after { content: ''; display: block; width: 1px; height: 2rem; background: rgba(255,255,255,0.3); margin: 0.5rem auto 0; }

/* ─── Stats ─────────────────────────────────────────────────────────────────── */
.stats-section { background: var(--yellow); padding: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 2rem; border-right: 1px solid rgba(0,0,0,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--black); line-height: 1; }
.stat-label { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(0,0,0,0.6); margin-top: 0.5rem; }

/* ─── Services ──────────────────────────────────────────────────────────────── */
.services-section { background: var(--gray-950); padding: 6rem 0; }
.services-section .section-title { color: var(--white); margin-bottom: 1rem; }
.services-section .section-sub { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--gray-900); border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--yellow); transition: height 0.3s; }
.service-card:hover::before { height: 100%; }
.service-icon { width: 3rem; height: 3rem; background: var(--yellow); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; }
.service-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: var(--white); margin-bottom: 0.75rem; }
.service-desc { color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; }

/* ─── Projects ──────────────────────────────────────────────────────────────── */
.projects-section { background: var(--black); padding: 6rem 0; }
.projects-section .section-title { color: var(--white); margin-bottom: 1rem; }
.projects-section .section-sub { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 4rem; }
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.project-card { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-tag { background: var(--yellow); color: var(--black); font-family: var(--font-heading); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.75rem; display: inline-block; margin-bottom: 0.5rem; }
.project-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 900; color: var(--white); text-transform: uppercase; }
.project-loc { color: var(--gray-400); font-size: 0.8rem; margin-top: 0.25rem; }

/* ─── About ─────────────────────────────────────────────────────────────────── */
.about-section { background: var(--gray-950); padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-heading); font-weight: 900; text-align: center;
  padding: 1.5rem; width: 8rem; height: 8rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.about-badge .badge-num { font-size: 2.5rem; line-height: 1; }
.about-badge .badge-text { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content .section-title { color: var(--white); margin-bottom: 1.5rem; }
.about-content p { color: var(--gray-400); line-height: 1.8; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 2rem 0; }
.about-feature { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.about-feature::before { content: ''; width: 0.5rem; height: 0.5rem; background: var(--yellow); flex-shrink: 0; }

/* ─── Safety ────────────────────────────────────────────────────────────────── */
.safety-section { background: var(--black); padding: 6rem 0; }
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.safety-content .section-title { color: var(--white); margin-bottom: 1.5rem; }
.safety-content p { color: var(--gray-400); line-height: 1.8; margin-bottom: 2rem; }
.safety-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.safety-stat { background: var(--gray-900); border: 1px solid rgba(255,255,255,0.06); padding: 1.5rem; }
.safety-stat .s-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--yellow); }
.safety-stat .s-label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); margin-top: 0.25rem; }
.safety-image { position: relative; }
.safety-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.emr-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: var(--yellow); color: var(--black);
  font-family: var(--font-heading); font-weight: 900; text-align: center;
  padding: 1.5rem; width: 9rem; height: 9rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.emr-badge .emr-num { font-size: 2.5rem; line-height: 1; }
.emr-badge .emr-text { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── Gallery ───────────────────────────────────────────────────────────────── */
.gallery-section { background: var(--black); padding: 6rem 0; }
.gallery-section .section-title { color: var(--white); margin-bottom: 1rem; }
.gallery-section .section-sub { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 4rem; }
.gallery-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
.before-after-wrap { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; cursor: col-resize; user-select: none; }
.ba-after { position: absolute; inset: 0; }
.ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-before img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-divider { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--yellow); z-index: 10; left: 50%; }
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 2.5rem; height: 2.5rem; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.5); z-index: 11;
}
.ba-label {
  position: absolute; top: 0.75rem; z-index: 12;
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 900;
  letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.75rem;
}
.ba-label.before { left: 0.75rem; background: rgba(0,0,0,0.7); color: var(--white); }
.ba-label.after { right: 0.75rem; background: var(--yellow); color: var(--black); }
.gallery-info { background: var(--gray-900); border: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; margin-top: 0; }
.gallery-info h3 { font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; color: var(--white); text-transform: uppercase; margin-bottom: 0.5rem; }
.gallery-info p { color: var(--gray-400); font-size: 0.9rem; line-height: 1.6; }
.gallery-tag { display: inline-block; background: var(--yellow); color: var(--black); font-family: var(--font-heading); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; margin-bottom: 0.75rem; }
.gallery-meta { color: var(--gray-500); font-size: 0.75rem; margin-top: 0.5rem; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-thumb {
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden; cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--yellow); }
.gallery-thumb img { width: 100%; height: 5rem; object-fit: cover; }
.gallery-thumb-label { padding: 0.5rem 0.75rem; background: var(--gray-900); }
.gallery-thumb-label strong { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 900; color: var(--white); display: block; }
.gallery-thumb-label span { font-size: 0.7rem; color: var(--gray-500); }

/* ─── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--gray-950); padding: 6rem 0; }
.testimonials-section .section-title { color: var(--white); margin-bottom: 1rem; }
.testimonials-section .section-sub { color: var(--gray-400); font-size: 1.1rem; margin-bottom: 4rem; }
.testimonials-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; align-items: start; }
.testimonial-featured {
  background: var(--black); border: 1px solid rgba(250,204,21,0.2);
  padding: 2.5rem; position: relative; min-height: 280px;
}
.testimonial-quote-mark {
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-heading); font-size: 8rem; font-weight: 900;
  color: rgba(250,204,21,0.07); line-height: 1; pointer-events: none;
}
.testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.5rem; }
.testimonial-stars .star { color: var(--yellow); font-size: 1.1rem; }
.testimonial-rating { font-family: var(--font-heading); font-size: 0.8rem; font-weight: 900; color: var(--yellow); letter-spacing: 0.1em; margin-left: 0.75rem; }
.testimonial-text { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.author-avatar { width: 3.5rem; height: 3.5rem; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1rem; color: var(--white); flex-shrink: 0; }
.author-info .author-name { font-family: var(--font-heading); font-weight: 900; font-size: 1rem; color: var(--white); }
.author-info .author-role { color: var(--gray-400); font-size: 0.8rem; }
.author-info .author-loc { color: var(--gray-500); font-size: 0.7rem; margin-top: 0.1rem; }
.author-tag { background: var(--yellow); color: var(--black); font-family: var(--font-heading); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.75rem; }
.testimonial-list { display: flex; flex-direction: column; gap: 0.75rem; }
.testimonial-item {
  border: 1px solid rgba(255,255,255,0.1); background: var(--black);
  padding: 1rem 1.25rem; cursor: pointer; transition: border-color 0.2s;
  display: flex; align-items: center; gap: 1rem;
}
.testimonial-item:hover, .testimonial-item.active { border-color: var(--yellow); background: rgba(250,204,21,0.05); }
.item-avatar { width: 2.5rem; height: 2.5rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 0.8rem; color: var(--white); }
.item-info .item-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--white); }
.testimonial-item.active .item-name { color: var(--yellow); }
.item-stars { display: flex; gap: 2px; margin: 2px 0; }
.item-stars .star { font-size: 0.65rem; color: var(--yellow); }
.item-role { color: var(--gray-500); font-size: 0.7rem; }
.item-tag { margin-left: auto; background: rgba(255,255,255,0.08); color: var(--gray-400); font-family: var(--font-heading); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.5rem; flex-shrink: 0; }
.testimonial-item.active .item-tag { background: var(--yellow); color: var(--black); }

/* ─── Contact ───────────────────────────────────────────────────────────────── */
.contact-section { background: var(--gray-950); padding: 6rem 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; }
.contact-info .section-title { color: var(--white); margin-bottom: 1.5rem; }
.contact-info p { color: var(--gray-400); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail .cd-icon { width: 2.5rem; height: 2.5rem; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.contact-detail .cd-label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.contact-detail .cd-value { color: var(--white); font-size: 0.95rem; margin-top: 0.15rem; }
.emergency-box { border: 1px solid rgba(250,204,21,0.3); background: rgba(250,204,21,0.05); padding: 1.5rem; margin-top: 2rem; }
.emergency-box .em-label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.25rem; }
.emergency-box .em-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--white); }
.emergency-box .em-sub { color: var(--gray-400); font-size: 0.8rem; margin-top: 0.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-900); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  padding: 0.85rem 1rem; outline: none; transition: border-color 0.2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--yellow); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--gray-900); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand .logo-box { width: 2.5rem; height: 2.5rem; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1rem; color: var(--black); }
.footer-brand p { color: var(--gray-400); font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: var(--gray-400); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--gray-500); font-size: 0.8rem; }

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .safety-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-layout, .testimonials-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-badge, .emr-badge { right: 0; bottom: 0; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(0,0,0,0.98); padding: 1.5rem; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.15); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-layout { grid-template-columns: 1fr; }
}
