/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #D8A539;
  --gold-dk:     #b8871f;
  --gold-lt:     #e8b84a;
  --charcoal:    #22231D;
  --charcoal-lt: #2e2f28;
  --cream:       #EDEFDE;
  --cream-dk:    #d8d9cc;
  --olive:       #6A6A5E;
  --olive-lt:    #7e7e71;
  --white:       #ffffff;
  --black:       #0e0f0b;
  --font-head:   'Oswald', 'Arial Narrow', sans-serif;
  --font-body:   'Roboto', Arial, sans-serif;
  --radius:      4px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; line-height: 1.1;
}
.section-title .highlight { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head); font-size: 1rem;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; border: none;
  cursor: pointer; border-radius: var(--radius);
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover {
  background: var(--gold-dk); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216,165,57,0.4);
}
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--charcoal); transform: translateY(-2px); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }

.bar { display: block; width: 56px; height: 4px; background: var(--gold); margin: 14px 0 20px; }
.bar.center { margin: 14px auto 20px; }

/* ============================================================
   HEADER
============================================================ */
#header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(34,35,29,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 84px; gap: 16px;
}
.header-logo-wrap { display: flex; align-items: center; gap: 10px; }
.header-logo-text .name {
  display: block;
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--white); line-height: 1.1;
}
.header-logo-text .tagline {
  display: block;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold);
}
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-family: var(--font-head); font-size: 0.9rem;
  font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: #bbb;
  transition: color var(--transition);
}
.header-nav a:hover,
.header-nav a.active { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 600; color: var(--white); white-space: nowrap;
}
.header-phone .icon { color: var(--gold); }
.header-phone:hover { color: var(--gold); }

/* ============================================================
   MOBILE MENU (upgraded — slide-down, staggered links, accent highlights)
============================================================ */
/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.25s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) { margin-bottom: 6px; }
.hamburger span:nth-child(3) { margin-top: 6px; }

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile menu panel — slide down */
.mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--charcoal-lt);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.3s ease,
              padding 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  border-top: 1px solid #3a3b32;
  gap: 0;
}
.mobile-nav.open {
  max-height: 500px;
  opacity: 1;
  padding: 12px 0 20px;
}

/* Mobile menu links — staggered fade-in */
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 12px 24px;
  border-bottom: 1px solid #3a3b32;
  text-decoration: none;
  transform: translateY(-8px);
  opacity: 0;
  transition: color 0.2s ease,
              transform 0.35s cubic-bezier(0.77, 0, 0.18, 1),
              opacity 0.35s ease,
              border-left 0.2s ease;
  border-left: 3px solid transparent;
}
.mobile-nav.open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.3s; }
.mobile-nav.open a:nth-child(7) { transition-delay: 0.35s; }

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:active {
  color: #fff;
  border-left-color: var(--gold);
}
.mobile-nav a.active {
  color: var(--gold);
  border-left-color: var(--gold);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal-lt);
  padding: 40px 0 28px;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 20px;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; }
.footer-logo-text .name {
  display: block;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white); line-height: 1.1;
}
.footer-logo-text .tagline {
  display: block;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--olive);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  width: 100%; padding-top: 20px; margin-top: 16px;
  border-top: 1px solid var(--charcoal-lt);
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
}
.footer-copy p { font-size: 0.78rem; color: var(--olive); letter-spacing: 0.5px; }
.footer-copy .powered { font-size: 0.73rem; color: #555547; }
.footer-copy .powered span { color: var(--gold); font-weight: 600; }

/* ============================================================
   RESPONSIVE — GLOBAL
============================================================ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: auto; padding: 14px 0; }
  .header-cta { display: none; }
  .header-logo-wrap img { height: 48px !important; width: 48px !important; }
}
@media (min-width: 901px) {
  .mobile-nav { display: none !important; }
}
@media (max-width: 660px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .header-phone { font-size: 0.9rem; }
  .header-logo-text .name { font-size: 1rem; }
}

/* ============================================================
   HERO — INDEX
============================================================ */
#hero {
  position: relative; min-height: calc(100vh - 76px);
  display: flex; align-items: center;
  overflow: hidden; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.9;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(34,35,29,0.92) 0%,
    rgba(34,35,29,0.68) 55%,
    rgba(34,35,29,0.3) 100%
  );
}
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 28px,
    var(--black) 28px, var(--black) 36px
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; padding: 6px 14px; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  color: var(--white);
}
.hero-title .accent { color: var(--gold); }
.hero-sub {
  font-size: 1.1rem; font-weight: 300;
  color: var(--cream-dk); max-width: 520px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-actions .divider { width: 1px; height: 40px; background: #555547; }
.hero-phone-cta { display: flex; flex-direction: column; }
.hero-phone-cta .label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--olive-lt);
}
.hero-phone-cta .number {
  font-family: var(--font-head); font-size: 1.4rem;
  font-weight: 600; color: var(--white);
}
.hero-phone-cta .number:hover { color: var(--gold); }
.hero-stats {
  display: flex; flex-wrap: wrap;
  margin-top: 60px;
  background: rgba(34,35,29,0.88);
  border: 1px solid #3a3b32;
  border-left: 4px solid var(--gold);
}
.hero-stat {
  flex: 1; min-width: 130px;
  padding: 18px 24px;
  border-right: 1px solid #3a3b32;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-head); font-size: 2.2rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.hero-stat .lbl {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--olive-lt); margin-top: 4px;
}

/* ============================================================
   SERVICES CARDS — INDEX
============================================================ */
#services {
  background: var(--charcoal-lt); padding: 90px 0;
  position: relative;
}
#services::before {
  content: ''; display: block; position: absolute;
  top: -1px; left: 0; right: 0; height: 50px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-title { color: var(--white); }
.services-header p { color: var(--olive-lt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: #2e2f28; border: 1px solid #3a3b32;
  border-top: 4px solid var(--gold);
  padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  background: #363731; transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; display: flex;
  align-items: center; justify-content: center;
  background: rgba(216,165,57,0.1);
  border: 1.5px solid rgba(216,165,57,0.3);
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.service-card h3 {
  font-family: var(--font-head); font-size: 1.25rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--white); margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--olive-lt); line-height: 1.65; }

/* ============================================================
   ABOUT — INDEX
============================================================ */
#about { background: var(--charcoal); padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-content .section-title { margin-bottom: 4px; color: var(--white); }
.about-content p {
  font-size: 0.975rem; color: #bbbcb0;
  line-height: 1.8; margin-bottom: 16px;
}
.about-content p strong { color: var(--white); }
.about-checklist {
  list-style: none; margin: 20px 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.about-checklist li {
  display: flex; align-items: flex-start;
  gap: 12px; font-size: 0.9rem; color: #ccc;
}
.about-checklist li::before {
  content: '▸'; color: var(--gold); font-size: 1rem;
  flex-shrink: 0; margin-top: 1px;
}
.about-visual { position: relative; }
.about-visual-inner {
  position: relative; background: #2e2f28;
  border: 1px solid #3a3b32; overflow: hidden;
}
.about-visual-inner img {
  width: 100%; height: 420px; object-fit: cover; display: block;
}
.bracket-tl, .bracket-br { position: absolute; width: 36px; height: 36px; }
.bracket-tl { top: -8px; left: -8px; border-top: 4px solid var(--gold); border-left: 4px solid var(--gold); }
.bracket-br { bottom: -8px; right: -8px; border-bottom: 4px solid var(--gold); border-right: 4px solid var(--gold); }
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: var(--charcoal); padding: 14px 20px; z-index: 2;
}
.about-badge .big {
  font-family: var(--font-head); font-size: 2rem; font-weight: 700; line-height: 1;
}
.about-badge .small {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
}

/* ============================================================
   WHY CHOOSE US — INDEX
============================================================ */
#why { background: var(--cream); color: var(--charcoal); padding: 90px 0; }
#why .section-title { color: var(--charcoal); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white); border: 1px solid var(--cream-dk);
  border-bottom: 4px solid var(--gold);
  padding: 30px 26px; text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(34,35,29,0.12); }
.why-icon {
  width: 60px; height: 60px;
  background: rgba(216,165,57,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; border: 2px solid rgba(216,165,57,0.3);
}
.why-icon svg { width: 28px; height: 28px; fill: var(--gold); }
.why-card h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px;
}
.why-card p { font-size: 0.875rem; color: var(--olive); line-height: 1.65; }

/* ============================================================
   SERVICE AREA BANNER — INDEX
============================================================ */
#area { background: var(--gold); padding: 40px 0; text-align: center; }
.area-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 24px;
}
.area-text h3 {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--charcoal);
}
.area-text p { font-size: 0.875rem; color: rgba(34,35,29,0.75); margin-top: 4px; }
.area-locations { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.location-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,35,29,0.18); border: 1px solid rgba(34,35,29,0.35);
  color: var(--charcoal); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px;
}

/* ============================================================
   CONTACT — INDEX
============================================================ */
#contact { background: var(--charcoal-lt); padding: 100px 0; position: relative; }
#contact::before {
  content: ''; position: absolute;
  top: -1px; left: 0; right: 0; height: 50px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 64px; align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; line-height: 1.1;
  margin-bottom: 4px; color: var(--white);
}
.contact-info .highlight { color: var(--gold); }
.contact-info p { font-size: 0.9rem; color: var(--olive-lt); line-height: 1.7; margin-top: 16px; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(216,165,57,0.1); border: 1.5px solid rgba(216,165,57,0.3);
  display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.contact-detail-text .label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--olive-lt);
}
.contact-detail-text .value {
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 500;
  color: var(--white); margin-top: 2px;
}
.contact-detail-text .value a:hover { color: var(--gold); }
.contact-form-wrap {
  background: #2e2f28; border: 1px solid #3a3b32;
  border-top: 4px solid var(--gold); padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--olive-lt); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--charcoal); border: 1px solid #3a3b32;
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,165,57,0.18);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #555547; }
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 4px;
}
.form-note { font-size: 0.78rem; color: var(--olive); }
.btn-submit { font-size: 1rem; padding: 14px 36px; }

/* ============================================================
   RESPONSIVE — INDEX
============================================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .about-visual-inner img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 660px) {
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid #3a3b32; }
  .hero-stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
@media (max-width: 420px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .divider { display: none; }
}

/* ============================================================
   PAGE HERO — SERVICES
============================================================ */
.page-hero {
  background: var(--charcoal);
  border-bottom: 4px solid var(--gold);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(216,165,57,0.03) 0px, rgba(216,165,57,0.03) 1px,
    transparent 1px, transparent 12px
  );
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { display: block; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; line-height: 1.08;
  color: var(--white); margin-bottom: 16px;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p {
  font-size: 1.05rem; color: var(--cream-dk);
  max-width: 600px; margin: 0 auto; line-height: 1.75;
}

/* ============================================================
   INTRO STRIP — SERVICES
============================================================ */
.services-intro {
  background: var(--gold);
  padding: 28px 0;
  text-align: center;
}
.services-intro p {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 500;
  letter-spacing: 1px; color: var(--charcoal);
  max-width: 780px; margin: 0 auto;
}

/* ============================================================
   SERVICE ROWS — SERVICES
============================================================ */
.service-rows { background: var(--charcoal); padding: 0; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid #2e2f28;
}
.service-row:last-child { border-bottom: none; }

/* Image cell */
.service-row-img {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-row-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.service-row:hover .service-row-img img {
  transform: scale(1.03);
}
.service-row-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(34,35,29,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Text cell */
.service-row-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 52px;
  background: var(--charcoal-lt);
}
/* Alternate: image right, text left */
.service-row.reverse .service-row-img { order: 2; }
.service-row.reverse .service-row-text {
  order: 1;
  background: var(--charcoal);
}

.service-row-num {
  font-family: var(--font-head);
  font-size: 4rem; font-weight: 700;
  color: rgba(216,165,57,0.12);
  line-height: 1; margin-bottom: -10px;
  letter-spacing: -2px;
}
.service-row-text .section-label { margin-bottom: 6px; }
.service-row-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white);
  line-height: 1.15; margin-bottom: 6px;
}
.service-row-text h2 .highlight { color: var(--gold); }
.service-row-text .bar { margin: 14px 0 20px; }
.service-row-text p {
  font-size: 0.95rem; color: #bbbcb0;
  line-height: 1.8; margin-bottom: 14px;
}
.service-row-text p:last-of-type { margin-bottom: 28px; }

/* Equipment callout box */
.equip-box {
  background: rgba(216,165,57,0.07);
  border: 1px solid rgba(216,165,57,0.2);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.equip-box h4 {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.equip-box ul {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.equip-box ul li {
  font-size: 0.875rem; color: #ccc; line-height: 1.5;
}
.equip-box ul li::before {
  content: '▸ '; color: var(--gold);
}
.equip-box ul li strong { color: var(--white); }

.btn-request {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-head); font-size: 0.95rem;
  font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: var(--transition);
}
.btn-request:hover {
  background: var(--gold-dk); color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216,165,57,0.35);
}
.btn-request svg { width: 16px; height: 16px; }

/* ============================================================
   CTA BAND — SERVICES
============================================================ */
.cta-band {
  background: var(--charcoal-lt);
  border-top: 4px solid var(--gold);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white);
  margin-bottom: 16px; line-height: 1.1;
}
.cta-band h2 .accent { color: var(--gold); }
.cta-band p {
  font-size: 1rem; color: var(--olive-lt);
  max-width: 520px; margin: 0 auto 32px;
  line-height: 1.75;
}
.cta-actions {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 20px;
}
.cta-divider { width: 1px; height: 40px; background: #3a3b32; }
.cta-phone {
  display: flex; flex-direction: column; align-items: center;
}
.cta-phone .lbl {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--olive-lt);
}
.cta-phone .num {
  font-family: var(--font-head); font-size: 1.5rem;
  font-weight: 600; color: var(--white);
}
.cta-phone .num:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE — SERVICES
============================================================ */
@media (max-width: 860px) {
  .service-row {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .service-row-img { min-height: 280px; order: 0 !important; }
  .service-row-text { order: 1 !important; padding: 40px 28px; }
  .service-row.reverse .service-row-img { order: 0 !important; }
  .service-row.reverse .service-row-text { order: 1 !important; background: var(--charcoal-lt); }
  .btn-request { align-self: stretch; justify-content: center; }
}
@media (max-width: 480px) {
  .service-row-text { padding: 32px 20px; }
  .cta-divider { display: none; }
  .cta-actions { flex-direction: column; }
}

/* ============================================================
   FADE-IN ANIMATIONS
============================================================ */

/* ============================================================
   BLOG HERO
============================================================ */
.blog-hero {
  background: var(--charcoal);
  border-bottom: 4px solid var(--gold);
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(216,165,57,0.03) 0px, rgba(216,165,57,0.03) 1px,
    transparent 1px, transparent 12px
  );
}
.blog-hero-inner { position: relative; z-index: 1; text-align: center; }
.blog-hero-inner .section-label { display: block; margin-bottom: 12px; }
.blog-hero-inner .section-title { margin-bottom: 4px; color: var(--white); }
.blog-hero p {
  font-size: 1.05rem; color: var(--cream-dk);
  max-width: 600px; margin: 0 auto; line-height: 1.75;
}

/* ============================================================
   BLOG FILTER BAR
============================================================ */
.blog-filter-bar {
  background: var(--charcoal-lt);
  border-bottom: 1px solid #3a3b32;
  padding: 16px 0;
}
.blog-filter-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.blog-filter-count {
  font-size: 0.85rem; color: var(--olive-lt);
}
.blog-filter-count span { color: var(--gold); font-weight: 700; }
.blog-filter-count em { font-style: italic; color: var(--white); }
.blog-search {
  background: var(--charcoal); border: 1px solid #3a3b32;
  border-radius: var(--radius); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  padding: 10px 16px; width: 260px; outline: none;
  transition: border-color var(--transition);
}
.blog-search::placeholder { color: #555547; }
.blog-search:focus { border-color: var(--gold); }

/* ============================================================
   BLOG POST CARDS
============================================================ */
.blog-posts-section {
  background: var(--charcoal);
  padding: 56px 0 80px;
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-post-card {
  background: var(--charcoal-lt);
  border: 1px solid #3a3b32;
  border-top: 4px solid var(--gold);
  overflow: hidden;
  transition: var(--transition);
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* Card image */
.blog-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-post-card:hover .blog-card-img {
  transform: scale(1.04);
}

/* Card body */
.blog-card-body {
  padding: 24px 24px 20px;
}
.blog-card-meta {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 10px;
}
.blog-card-cat {
  display: inline-block;
  background: rgba(216,165,57,0.15);
  border: 1px solid rgba(216,165,57,0.35);
  color: var(--gold);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px;
}
.blog-card-date {
  font-size: 0.78rem; color: var(--olive);
}
.blog-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--white); line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-post-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: 0.875rem; color: var(--olive-lt);
  line-height: 1.65; margin-bottom: 16px;
}
.blog-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #3a3b32;
}
.blog-card-author {
  font-size: 0.75rem; color: var(--olive);
  font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-card-read-more {
  font-family: var(--font-head);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition);
}
.blog-card-read-more:hover { color: var(--gold-lt); }

/* Empty state */
.blog-empty {
  text-align: center; padding: 80px 0;
}
.blog-empty h3 {
  font-family: var(--font-head);
  font-size: 1.5rem; color: var(--white);
  text-transform: uppercase; margin-bottom: 12px;
}
.blog-empty p { color: var(--olive-lt); }

/* ============================================================
   ARTICLE / BLOG POST PAGE
============================================================ */
.article-hero {
  background: var(--black);
}
.article-hero-img-wrap {
  position: relative;
  max-width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
}
.article-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(14,15,11,0.6) 100%
  );
  pointer-events: none;
}

.article-body {
  background: var(--cream);
  padding: 48px 0 32px;
}
.article-container {
  max-width: 760px;
}

.article-meta {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.article-cat {
  display: inline-block;
  background: rgba(216,165,57,0.15);
  border: 1px solid rgba(216,165,57,0.35);
  color: var(--gold-dk);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 3px 10px;
}
.article-date {
  font-size: 0.82rem; color: var(--olive);
}
.article-author {
  font-size: 0.82rem; color: var(--olive);
}

.article-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.article-content {
  font-size: 1.05rem; line-height: 1.85;
  color: #3a3b32;
}
.article-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--charcoal);
  margin: 2.5rem 0 0.75rem;
}
.article-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 2rem 0 0.5rem;
}
.article-content p { margin-bottom: 1.2rem; }
.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }
.article-content a { color: var(--gold-dk); font-weight: 600; text-decoration: underline; }
.article-content a:hover { color: var(--gold); }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--white);
  font-style: italic; color: var(--olive);
}
.article-content img {
  max-width: 100%;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* Prev / Next nav */
.article-nav {
  display: flex; justify-content: space-between;
  gap: 1.5rem; margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-dk);
}
.article-nav-link {
  display: flex; flex-direction: column;
  gap: 4px; padding: 12px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s;
  flex: 1; min-width: 0;
}
.article-nav-link:hover { background: var(--white); }
.article-nav-next { text-align: right; }
.article-nav-label {
  font-size: 0.75rem; font-weight: 700;
  color: var(--gold-dk);
  text-transform: uppercase; letter-spacing: 2px;
}
.article-nav-title {
  font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 600;
  color: var(--charcoal);
  text-transform: uppercase;
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis;
}
.article-nav-placeholder { flex: 1; }

.article-back {
  text-align: center;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

/* ============================================================
   BLOG & ARTICLE RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-posts-grid { grid-template-columns: 1fr; }
  .blog-search { width: 100%; }
  .article-hero-img-wrap { aspect-ratio: 16/9; }
  .article-nav { flex-direction: column; gap: 1rem; }
  .article-nav-next { text-align: left; }
}

/* ============================================================
   THANK YOU PAGE
============================================================ */
.thankyou-section {
  padding: 80px 0 80px;
  background: var(--cream);
}
.thankyou-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.thankyou-header h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--almost-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.thankyou-header h1 .highlight { color: var(--gold); }
.thankyou-header p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.thankyou-articles-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--almost-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.thankyou-back {
  text-align: center;
  margin-top: 52px;
}
