/* ── IMAGE FALLBACK ──────────────────────────────────────────────── */
img { display: block; }
img[src]:not([src=""]) { background: #1a1a1a; }

/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red:       #CC1F1F;
  --red-dark:  #A01515;
  --black:     #111111;
  --charcoal:  #222222;
  --steel:     #3A3A3A;
  --gray:      #666666;
  --silver:    #999999;
  --light:     #F4F4F4;
  --lighter:   #FAFAFA;
  --white:     #FFFFFF;
  --border:    #E0E0E0;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-serif:'Lora', serif;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius:    4px;
  --max:       1200px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── STICKY PHONE BAR ─────────────────────────────────────────────── */
#phone-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--red);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 8px 20px;
  font-family: var(--font-head); font-size: 1rem; letter-spacing: 0.04em;
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
#phone-bar a { color: var(--white); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.08em; transition: opacity 0.2s; }
#phone-bar a:hover { opacity: 0.85; }
#phone-bar .ph-label { opacity: 0.9; font-weight: 400; font-size: 0.9rem; }
#phone-bar.hidden { transform: translateY(-100%); }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 999;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08); border-bottom: 1px solid var(--border);
  transition: top 0.3s ease;
}
#navbar .nav-logo img { height: 52px; width: auto; }
#navbar nav { display: flex; gap: 0; }
#navbar nav a {
  color: var(--charcoal); font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0 18px; height: 70px;
  display: flex; align-items: center;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
#navbar nav a:hover, #navbar nav a.active { color: var(--red); border-bottom-color: var(--red); }
#navbar .nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px !important; height: auto !important;
  border-bottom: none !important; border-radius: var(--radius);
  font-weight: 700 !important; transition: background 0.2s !important;
}
#navbar .nav-cta:hover { background: var(--red-dark) !important; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 25px; height: 2px; background: var(--charcoal); display: block; transition: 0.3s; }
.mobile-call-btn {
  display: none; align-items: center; gap: 7px;
  background: var(--red); color: var(--white);
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--radius); transition: background 0.2s;
}
.mobile-call-btn:hover { background: var(--red-dark); }
#mobile-menu {
  display: none; position: fixed; top: 110px; left: 0; right: 0;
  transition: top 0.3s ease;
  background: var(--black); z-index: 998;
  flex-direction: column; padding: 10px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  color: var(--white); font-family: var(--font-head); font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 30px; border-bottom: 1px solid #333;
  transition: color 0.2s, background 0.2s;
}
#mobile-menu a:hover { color: var(--red); background: #1a1a1a; }

/* page offset */
.page-top { padding-top: 110px; }

/* ── SECTION UTILITIES ───────────────────────────────────────────── */
.section { padding: 80px 20px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--black); line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--gray);
  max-width: 620px; line-height: 1.7; margin-bottom: 40px;
}
.divider { width: 52px; height: 4px; background: var(--red); margin: 0 0 32px 0; }
.divider.center { margin: 0 auto 32px; }

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; font-size: 0.95rem;
  padding: 14px 32px; border-radius: var(--radius);
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(204,31,31,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: var(--steel); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  min-height: 88vh; background: var(--black);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.85) 45%, rgba(180,20,20,0.18) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max); margin: 0 auto; padding: 60px 40px; width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.hero-title {
  font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.08;
  max-width: 680px; margin-bottom: 24px; text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-sub {
  font-family: var(--font-serif); font-size: 1.15rem; color: rgba(255,255,255,0.75);
  max-width: 520px; line-height: 1.7; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px; }
.hero-stat .num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--red); line-height: 1; }
.hero-stat .label { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── TRUST BAR ───────────────────────────────────────────────────── */
#trust-bar { background: var(--light); border-top: 4px solid var(--red); border-bottom: 1px solid var(--border); padding: 28px 20px; }
.trust-inner { max-width: var(--max); margin: 0 auto; display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: space-around; }
.trust-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); }
.trust-item svg { color: var(--red); flex-shrink: 0; }

/* ── SERVICES GRID (home) ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.service-card { background: var(--white); padding: 36px 30px; transition: background 0.25s; cursor: pointer; }
.service-card:hover { background: var(--black); }
.service-card[style*="grid-column"]:hover { background: #1a1a1a !important; }
.service-card:hover .sc-icon { color: var(--red); }
.service-card:hover .sc-title { color: var(--white); }
.service-card:hover .sc-text { color: rgba(255,255,255,0.65); }
.service-card:hover .sc-link { color: var(--red); }
.sc-icon { color: var(--red); margin-bottom: 18px; transition: color 0.25s; }
.sc-title { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 10px; letter-spacing: 0.02em; transition: color 0.25s; }
.sc-text { font-size: 0.92rem; color: var(--gray); line-height: 1.65; margin-bottom: 16px; transition: color 0.25s; }
.sc-link { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); transition: color 0.25s; display: flex; align-items: center; gap: 6px; }

/* ── ABOUT STRIP ─────────────────────────────────────────────────── */
#about-strip { background: var(--black); color: var(--white); padding: 80px 20px; }
.about-strip-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-photo-wrap { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.about-photo-wrap::after { content: ''; position: absolute; inset: -1px; border: 3px solid var(--red); border-radius: var(--radius); transform: translate(10px, 10px); z-index: 0; }
.about-text .section-title { color: var(--white); }
.about-text .section-sub { color: rgba(255,255,255,0.65); }
.about-num-row { display: flex; gap: 36px; margin-bottom: 32px; flex-wrap: wrap; }
.about-num .n { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: var(--red); line-height: 1; }
.about-num .l { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ── REVIEWS ─────────────────────────────────────────────────────── */
#reviews { background: var(--lighter); }
.reviews-carousel { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.review-card { min-width: 100%; padding: 0 8px; }
.review-inner { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 40px; box-shadow: var(--shadow); max-width: 700px; margin: 0 auto; position: relative; }
.review-inner::before { content: '"'; font-family: var(--font-serif); font-size: 6rem; color: var(--red); opacity: 0.12; position: absolute; top: 10px; left: 24px; line-height: 1; }
.stars { color: var(--red); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-family: var(--font-serif); font-size: 1.05rem; color: var(--charcoal); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer-name { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
.reviewer-type { font-size: 0.8rem; color: var(--silver); margin-top: 2px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.carousel-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; color: var(--steel); }
.carousel-btn:hover { border-color: var(--red); color: var(--red); background: #fff5f5; }
.carousel-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background 0.2s; cursor: pointer; }
.dot.active { background: var(--red); }
.review-google-cta { text-align: center; margin-top: 32px; }
.review-google-cta p { font-family: var(--font-serif); color: var(--gray); font-style: italic; margin-bottom: 12px; }

/* ── COMMERCIAL LOGOS ────────────────────────────────────────────── */
#commercial { background: var(--white); padding: 60px 20px; }
.commercial-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.logo-strip { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 40px; }
.logo-slot { width: 150px; height: 70px; border-radius: var(--radius); border: 2px dashed var(--border); background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--silver); font-family: var(--font-head); text-transform: uppercase; transition: border-color 0.2s; }
.logo-slot:hover { border-color: var(--red); }

/* ── CTA BAND ────────────────────────────────────────────────────── */
#cta-band { background: var(--red); padding: 70px 20px; text-align: center; }
.cta-band-inner { max-width: 700px; margin: 0 auto; }
.cta-band-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-band-sub { font-family: var(--font-serif); color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.cta-phone-big { font-family: var(--font-head); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--white); letter-spacing: 0.04em; display: block; margin-bottom: 8px; transition: opacity 0.2s; }
.cta-phone-big:hover { opacity: 0.85; }
.cta-hours { font-size: 0.85rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-head); }

/* ── PAGE HEROES ─────────────────────────────────────────────────── */
.page-hero { background: var(--black); padding: 70px 20px 60px; text-align: center; }
.page-hero .section-title { color: var(--white); margin-bottom: 0; }
.page-hero .section-sub { margin: 12px auto 0; text-align: center; color: rgba(255,255,255,0.65); }

/* ── SERVICES PAGE ───────────────────────────────────────────────── */
.service-block { padding: 80px 20px; border-bottom: 1px solid var(--border); }
.service-block:nth-child(even) { background: var(--lighter); }
.service-block-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-block:nth-child(even) .service-block-inner { direction: rtl; }
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }
.service-block-photo { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-block-text .section-sub { margin-bottom: 24px; }
.service-list { list-style: none; margin-bottom: 32px; }
.service-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; color: var(--steel); display: flex; align-items: center; gap: 10px; }
.service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── SPECIALIZATIONS ─────────────────────────────────────────────── */
.spec-strip { background: var(--black); padding: 70px 20px; }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden; }
.spec-card { background: #111; padding: 44px 36px; position: relative; overflow: hidden; transition: background 0.25s; }
.spec-card:hover { background: #1a1a1a; }
.spec-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--red); }
.spec-card-icon { color: var(--red); margin-bottom: 20px; }
.spec-card-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; margin-bottom: 12px; }
.spec-card-text { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.spec-tag { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(204,31,31,0.15); color: var(--red); padding: 5px 12px; border-radius: 2px; }

/* ── ABOUT PAGE ──────────────────────────────────────────────────── */
.about-story { padding: 80px 20px; background: var(--white); }
.about-story-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-story-text p { font-family: var(--font-serif); font-size: 1.05rem; color: var(--steel); line-height: 1.8; margin-bottom: 20px; }
.about-story-text p strong { color: var(--black); }
.team-photo-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 3/4; }
.values-section { background: var(--black); padding: 80px 20px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; max-width: var(--max); margin: 0 auto; }
.value-card { background: #1a1a1a; padding: 32px 24px; border-radius: var(--radius); border-left: 4px solid var(--red); }
.value-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: 0.04em; }
.value-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ── CONTACT PAGE ────────────────────────────────────────────────── */
.contact-section { padding: 80px 20px; background: var(--white); }
.contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 24px; letter-spacing: 0.04em; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width: 42px; height: 42px; background: var(--red); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.contact-detail-text .label { font-family: var(--font-head); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--silver); margin-bottom: 2px; }
.contact-detail-text .value { font-size: 1rem; color: var(--charcoal); font-weight: 600; }
.contact-detail-text .value a { color: var(--red); }
.service-area-note { background: var(--light); border-left: 4px solid var(--red); padding: 18px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 32px; }
.service-area-note p { font-size: 0.9rem; color: var(--steel); line-height: 1.6; }
.contact-form h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 24px; letter-spacing: 0.04em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel); margin-bottom: 6px; }
.form-group input, .form-group select { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--charcoal); background: var(--white); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,31,31,0.1); }
.form-submit { text-align: right; margin-top: 8px; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 16px 20px; margin-top: 16px; color: #166534; font-weight: 600; }

/* ── BLOG ────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 32px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; background: #fff0f0; color: var(--red); font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; margin-bottom: 10px; }
.blog-card-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--black); line-height: 1.3; margin-bottom: 8px; }
.blog-card-excerpt { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { font-size: 0.78rem; color: var(--silver); font-family: var(--font-head); letter-spacing: 0.05em; }

/* ── BLOG POST ───────────────────────────────────────────────────── */
.blog-post { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-title { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--black); line-height: 1.15; margin-bottom: 16px; }
.blog-post-meta { font-size: 0.85rem; color: var(--silver); font-family: var(--font-head); letter-spacing: 0.05em; margin-bottom: 32px; }
.blog-post-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius); margin-bottom: 40px; }
.blog-post-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--black); margin: 36px 0 12px; }
.blog-post-body h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--black); margin: 28px 0 10px; }
.blog-post-body p { font-family: var(--font-serif); font-size: 1.05rem; color: var(--steel); line-height: 1.8; margin-bottom: 20px; }
.blog-post-body ul { margin: 0 0 20px 24px; }
.blog-post-body ul li { font-family: var(--font-serif); font-size: 1.05rem; color: var(--steel); line-height: 1.7; margin-bottom: 8px; }
.blog-post-body strong { color: var(--black); }
.blog-cta-box { background: var(--light); border-left: 4px solid var(--red); padding: 24px 28px; border-radius: 0 var(--radius) var(--radius) 0; margin: 40px 0; }
.blog-cta-box p { font-family: var(--font-serif); font-size: 1rem; color: var(--steel); margin-bottom: 16px; }
.blog-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 32px; transition: gap 0.2s; }
.blog-back:hover { gap: 12px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer { background: var(--black); color: var(--white); padding: 60px 20px 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.65; max-width: 300px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-col ul li a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
.footer-cms a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-cms a:hover { color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-strip-inner, .about-story-inner, .service-block-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .service-block:nth-child(even) .service-block-inner { direction: ltr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  #phone-bar { display: none; }
  .mobile-call-btn { display: flex; }
  #navbar { padding: 0 16px; top: 0 !important; }
  #navbar nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .spec-link { display: none !important; }
  .page-top { padding-top: 70px; }
  #mobile-menu { top: 70px !important; }
}
