/* ==========================================================================
   SAN DIEGO CUSTOM IRON WORKS - MAIN STYLESHEET
   Design: Grounded Master Craftsman Aesthetic (Charcoal, Iron, Warm Gold)
   ========================================================================== */

:root {
  --color-primary: #121518;
  --color-primary-light: #1e2227;
  --color-secondary: #272d34;
  --color-accent: #c69214;
  --color-accent-hover: #dfa822;
  --color-text: #2c3238;
  --color-text-muted: #616e7c;
  --color-text-light: #f3f4f6;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-border: #e2e8f0;
  --color-border-dark: #374151;
  --color-star: #f59e0b;
  --color-success: #10b981;

  --font-heading: 'Cinzel', 'Oswald', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP BAR / UTILITY BAR
   ========================================================================== */
.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
}

.rating-stars {
  color: var(--color-star);
  font-size: 1rem;
  letter-spacing: 1px;
}

.serving-area {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.serving-area strong {
  color: var(--color-primary);
}

.topbar-center .site-logo {
  height: 68px;
  width: auto;
  object-fit: contain;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-request {
  background: linear-gradient(135deg, #a0a6ad 0%, #68707a 100%);
  color: #ffffff;
  padding: 9px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}
.btn-request:hover {
  background: linear-gradient(135deg, #7c8590 0%, #4f5761 100%);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.call-text-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.call-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.5px;
}
.phone-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
.phone-number:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  padding: 4px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger-btn {
  display: none;
  padding: 10px;
  background: transparent;
  color: var(--color-primary);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  background: #111418 url('images/hero-bg.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 18, 22, 0.92) 0%, rgba(14, 18, 22, 0.75) 55%, rgba(14, 18, 22, 0.88) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-content h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-subhead {
  font-size: 1.65rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 25px;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #f1f5f9;
}
.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-accent);
  color: #111;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-phone-cta {
  display: inline-block;
  background: #ffffff;
  color: #111418;
  padding: 14px 34px;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.hero-phone-cta:hover {
  background: var(--color-accent);
  color: #111;
  transform: translateY(-2px);
}

.hero-secondary-cta {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-hours-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.status-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--color-success);
  display: inline-block;
  box-shadow: 0 0 8px var(--color-success);
}

/* HERO FORM CARD */
.hero-form-card {
  background: #ffffff;
  color: var(--color-text);
  padding: 34px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-top: 5px solid var(--color-accent);
}

.hero-form-card h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 18px;
  text-align: center;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--color-text);
  background-color: #fcfcfc;
  transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(198, 146, 20, 0.2);
}

.btn-form-submit {
  background: linear-gradient(135deg, #8c939b 0%, #4a525d 100%);
  color: #ffffff;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  margin-top: 5px;
}
.btn-form-submit:hover {
  background: linear-gradient(135deg, #6c737b 0%, #30353c 100%);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.form-privacy-note {
  font-size: 0.72rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.35;
  margin-top: 5px;
}

/* ==========================================================================
   FEATURE STORY / INTRO SECTION
   ========================================================================== */
.section-intro {
  padding: 80px 0;
  background-color: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 24px;
  position: relative;
}

.intro-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #4b5563;
  font-size: 1.05rem;
}

.intro-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.intro-image-wrapper:hover img {
  transform: scale(1.03);
}

/* ==========================================================================
   SERVICES & EDITORIAL SECTION
   ========================================================================== */
.section-editorial {
  padding: 40px 0 80px;
  background-color: #fafbfc;
  border-top: 1px solid #edf2f7;
}

.editorial-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}
.editorial-header h2 {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.editorial-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.editorial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editorial-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.editorial-card h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
}

.editorial-card p {
  color: #4b5563;
  font-size: 0.98rem;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #374151;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   TRUST BADGES / STATS STRIP
   ========================================================================== */
.section-badges {
  background: #cbd3dc;
  padding: 40px 0;
  border-top: 1px solid #b5bdc7;
  border-bottom: 1px solid #b5bdc7;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.badge-icon-box {
  width: 56px;
  height: 56px;
  background: #1e242b;
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.badge-item:hover .badge-icon-box {
  background: var(--color-accent);
  color: #111418;
  transform: translateY(-2px);
}
.badge-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.badge-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
}

/* ==========================================================================
   PROJECT GALLERY
   ========================================================================== */
.section-gallery {
  padding: 85px 0;
  background: #ffffff;
}

.gallery-header {
  text-align: center;
  margin-bottom: 45px;
}
.gallery-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: #0e1114;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.88;
}

.gallery-overlay-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.25s ease;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
}
.zoom-circle {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-secondary-outline {
  display: inline-block;
  background: #b8bec5;
  color: #1a202c;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-secondary-outline:hover {
  background: #9fa6ae;
  color: #000;
}

/* ==========================================================================
   SPLIT FEATURE HIGHLIGHTS (Residential & Commercial)
   ========================================================================== */
.section-features {
  padding: 40px 0 80px;
  background-color: #fafbfc;
}

.split-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
}
.split-feature-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-feature-text {
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-feature-text h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary);
}

.split-feature-text p {
  color: #4b5563;
  font-size: 1.05rem;
}

.split-feature-img {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}
.split-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.split-feature-card:hover .split-feature-img img {
  transform: scale(1.03);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.section-about {
  padding: 70px 0;
  background: #ffffff;
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-text h2 {
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--color-primary);
}
.about-text p {
  font-size: 1.05rem;
  color: #4b5563;
}

.about-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   FREE CONSULTATION CALLOUT
   ========================================================================== */
.section-consultation {
  padding: 60px 0;
  background-color: #fafbfc;
}

.consultation-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.consultation-img-side {
  background: url('images/consultation-bg.jpg') center/cover no-repeat;
  min-height: 280px;
}

.consultation-content-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.consultation-badge-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}

.consultation-welder-badge {
  width: 82px;
  height: 82px;
  object-fit: contain;
  display: block;
}

.consultation-content-side h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
}

.consultation-content-side p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  max-width: 440px;
}

.schedule-btn {
  background: #b8bec5;
  color: #1a202c;
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: 8px;
}
.schedule-btn:hover {
  background: #9fa6ae;
  color: #000;
}

/* ==========================================================================
   TESTIMONIALS & REVIEWS SECTION
   ========================================================================== */
.section-reviews {
  padding: 80px 0;
  background: #39424c;
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: flex-start;
}

.reviews-intro h2 {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.reviews-intro p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.65;
}
.reviews-intro strong {
  color: #ffffff;
}

.review-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  backdrop-filter: blur(5px);
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.review-stars {
  color: var(--color-star);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review-quote {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.55;
  margin-bottom: 8px;
}

.review-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ==========================================================================
   RECENT ARTICLES / BLOG
   ========================================================================== */
.section-blog {
  padding: 80px 0;
  background: #ffffff;
}

.blog-header {
  margin-bottom: 35px;
}
.blog-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-primary);
}

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

.blog-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e2e8f0;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 10px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex-grow: 1;
}

.blog-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.blog-read-more:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   VIDEO SHOWCASE
   ========================================================================== */
.section-video {
  padding: 60px 0;
  background: #f1f4f8;
}

.video-container-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.video-info-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-text-muted);
}
.video-info-side h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary);
}
.video-info-side p {
  color: #4b5563;
  font-size: 1rem;
}

.video-player-side {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-player-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0b0d10;
  color: #cbd5e1;
  padding: 70px 0 30px;
  border-top: 3px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1.2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 6px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-directions {
  display: inline-block;
  background: #232a32;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid #374151;
  text-align: center;
  align-self: flex-start;
}
.btn-directions:hover {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-phone {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}
.footer-phone:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  background: #1c2229;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}
.social-icon-btn:hover {
  background: var(--color-accent);
  color: #000;
}
.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hours-table {
  font-size: 0.85rem;
  width: 100%;
  border-collapse: collapse;
}
.hours-table td {
  padding: 4px 0;
}
.hours-table td:last-child {
  text-align: right;
  color: #ffffff;
  font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid #1c2229;
  padding-top: 25px;
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bottom a {
  color: #94a3b8;
  text-decoration: underline;
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .badges-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .topbar-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .topbar-right {
    flex-direction: column;
    gap: 10px;
  }
  .call-text-box {
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    gap: 18px;
    background: #ffffff;
    border-top: 1px solid var(--color-border);
  }
  .nav-links.mobile-open {
    display: flex;
  }
  .hamburger-btn {
    display: block;
    margin: 10px auto;
  }

  .intro-grid,
  .editorial-grid,
  .split-feature-card,
  .about-grid,
  .consultation-box,
  .reviews-grid,
  .video-container-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 2.15rem;
  }
  .hero-subhead {
    font-size: 1.35rem;
  }
}

@media (max-width: 520px) {
  .badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
