/* =========================================================================
   Bullet General Contracting | Black / Gold / Chrome theme
   Single source of truth for brand tokens. Change palette here only.
   ========================================================================= */
:root {
  /* Palette */
  --ink:       #0d0d0d;   /* primary dark background */
  --ink-dk:    #060606;   /* deeper black (footer/overlays) */
  --ink-2:     #1a1a1a;   /* raised dark panels */
  --char:      #141414;   /* alt dark section */
  --gold:      #E6B126;   /* brand gold accent */
  --gold-dk:   #c8971a;
  --gold-lt:   #f3c948;
  --white:     #ffffff;
  --cream:     #f6f6f4;   /* light page background */
  --panel:     #ffffff;   /* card surfaces */
  --text:      #1a1a1a;   /* body text on light */
  --muted:     #6a6a6a;   /* secondary text */
  --line:      #e5e4e1;   /* hairline borders */
  --star:      #E6B126;   /* review stars */

  /* alternating dark section backgrounds (cards stay light) */
  --sec-a:     #0d0d0d;
  --sec-b:     #141414;
  --on-dark:   #d2d2d2;   /* body text on dark sections */
  --on-dark-2: #a6a6a6;   /* secondary text on dark */

  --maxw: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow:    0 10px 30px rgba(0,0,0,.14);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.22);
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}


/* ----------------------------- Reset / base ----------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 84px;
  scrollbar-color: var(--gold) var(--ink-dk); scrollbar-width: thin; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text);
  background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dk); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600;
  line-height: 1.1; color: var(--ink); letter-spacing: .3px; margin: 0 0 .5em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); text-transform: uppercase; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section { padding: 84px 0; }

/* Themed selection */
::selection { background: var(--gold); color: #111; }
::-moz-selection { background: var(--gold); color: #111; }

/* Custom scrollbar (WebKit) */
::-webkit-scrollbar { width: 12px; height: 0; }
::-webkit-scrollbar-track { background: var(--ink-dk); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-dk));
  border-radius: 10px; border: 3px solid var(--ink-dk);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-lt); }

/* Visible keyboard focus */
:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px;
}

/* ----------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .6px; font-size: .95rem;
  padding: 14px 26px; border-radius: var(--radius-sm); cursor: pointer;
  border: 2px solid transparent; transition: transform .25s var(--ease),
    box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--gold); color: #111; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: var(--gold); color: #111; border-color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: #111; color: #fff; border-color: #111; }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ----------------------------- Header ----------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  background: linear-gradient(180deg, rgba(0,0,0,.65), transparent); padding: 10px 0;
}
.site-header.scrolled {
  background: var(--ink); box-shadow: 0 6px 22px rgba(0,0,0,.45); padding: 4px 0;
  border-bottom: 1px solid rgba(230,177,38,.25);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { height: 52px; width: auto; display: block; background: #0d0d0d;
  border-radius: 10px; border: 4px solid #0d0d0d;
  box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.32rem;
  text-transform: uppercase; letter-spacing: .5px; line-height: 1; color: #fff; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500;
  font-size: .62rem; letter-spacing: 2.5px; color: var(--gold); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #f0f0f0; font-weight: 600; font-size: .96rem; position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
/* Services dropdown */
.has-dropdown { position: relative; display: flex; align-items: center; gap: 4px;
  flex-wrap: wrap; justify-content: center; }
.nav-caret { background: none; border: 0; color: var(--gold); cursor: pointer; padding: 2px;
  display: inline-flex; align-items: center; line-height: 0; }
.nav-caret svg { width: 19px; height: 19px; transition: transform .3s var(--ease); }
.has-dropdown:hover .nav-caret, .has-dropdown:focus-within .nav-caret { color: var(--gold-lt); }
.has-dropdown:hover .nav-caret svg, .has-dropdown:focus-within .nav-caret svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  margin: 0; padding: 8px; min-width: 224px; list-style: none;
  background: var(--ink); border: 1px solid rgba(230,177,38,.28); border-radius: 12px;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; z-index: 1100;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.dropdown li { width: 100%; }
.dropdown a { display: block; padding: 9px 14px; border-radius: 8px; color: #eaeaea;
  font-size: .92rem; font-weight: 600; white-space: nowrap; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(255,255,255,.07); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: #fff; font-family: var(--font-display); font-weight: 600;
  font-size: 1.05rem; display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; line-height: 1; }
.nav-phone svg { flex: none; display: block; color: var(--gold); }
.nav-phone .lbl { font-feature-settings: "tnum"; letter-spacing: .5px; }
.nav-phone:hover { color: var(--gold); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  z-index: 1100; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease); }
.nav-toggle span + span { margin-top: 5px; }

/* ----------------------------- Hero ------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; padding-top: 120px; padding-bottom: 64px; overflow: hidden;
  background:
    linear-gradient(rgba(8,8,8,.72), rgba(8,8,8,.78)),
    url("../images/hero.jpg") center 30%/cover no-repeat,
    var(--ink-dk);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(6,6,6,.9) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 3.5px; font-size: .82rem; color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase;
  margin-bottom: .25em; max-width: 16ch;
}
.hero h1 .accent { color: var(--gold); }
.hero-tag { font-family: var(--font-display); font-size: clamp(1.05rem,2.2vw,1.4rem);
  letter-spacing: 4px; color: rgba(255,255,255,.82); text-transform: uppercase; font-weight: 500; }
.hero-sub { font-size: 1.12rem; color: #dcdcdc; max-width: 56ch; margin: 18px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-badge { display: flex; align-items: center; gap: 10px; color: #dcdcdc; font-size: .95rem; }
.hero-badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.hero-badge .stars { color: var(--star); letter-spacing: 2px; }
/* Scroll cue (shown on mobile) */
.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 9px; z-index: 3;
  color: rgba(255,255,255,.6); font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 3px; font-size: .68rem;
}
.hero-scroll:hover { color: #fff; }
.hero-scroll-line { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent);
  transform-origin: top; animation: heroScroll 1.8s ease-in-out infinite; }
@keyframes heroScroll {
  0%, 100% { opacity: .3; transform: scaleY(.55); }
  50%      { opacity: 1;  transform: scaleY(1); }
}

/* ----------------------------- Trust strip ------------------------------ */
.trust { background: var(--ink); color: #fff; padding: 0; border-top: 1px solid rgba(230,177,38,.2);
  border-bottom: 1px solid rgba(230,177,38,.2); }
.trust .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 44px;
  padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .98rem;
  color: #ededed; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ----------------------------- Section heads ---------------------------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.sec-kicker { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; color: var(--gold-dk); font-weight: 600; margin-bottom: 12px;
  display: inline-flex; align-items: center; gap: 10px; }
.sec-kicker::before, .sec-kicker::after { content: ""; width: 26px; height: 2px; background: var(--gold); }
.sec-head p { color: var(--muted); font-size: 1.06rem; }

/* ----------------------------- About ------------------------------------ */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: center; }
.about-card {
  background: var(--ink); color: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.about-card::before { content:""; position:absolute; inset:0 0 auto 0; height:6px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk)); }
.about-card h3 { color: #fff; font-size: 1.5rem; }
.about-card .stat-row { display: flex; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.about-card .stat strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold);
  display: block; line-height: 1; }
.about-card .stat span { font-size: .86rem; color: #c8c8c8; letter-spacing: .5px; }
.about h2 .accent { color: var(--gold-dk); }
.about ul.checks { list-style: none; padding: 0; margin: 22px 0 28px; }
.about ul.checks li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--text); }
.about ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px;
  border-radius: 50%; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/16px no-repeat;
}

/* ----------------------------- Services --------------------------------- */
.services { background: var(--sec-a); color: var(--on-dark); }
.svc-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.svc-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow); min-height: 300px; display: flex; flex-direction: column;
  justify-content: flex-end; isolation: isolate;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
  transition: transform .6s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,8,.1) 0%, rgba(8,8,8,.55) 55%, rgba(6,6,6,.94) 100%);
}
.svc-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.svc-card:hover img { transform: scale(1.07); }
.svc-card-body { padding: 22px 20px; position: relative; }
.svc-card-no { font-family: var(--font-display); font-size: .9rem; color: var(--gold);
  letter-spacing: 1px; }
.svc-card h3 { color: #fff; font-size: 1.18rem; margin: 4px 0 8px; }
.svc-card p { color: #cfcfcf; font-size: .9rem; margin: 0; line-height: 1.5; }
.svc-card-more { display: inline-block; margin-top: 12px; font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: 1px; font-size: .82rem; color: var(--gold);
  transition: gap .2s var(--ease); }
.svc-card:hover .svc-card-more { color: var(--gold-lt); }

/* Condensed "Advantages" strip inside the services section */
.svc-highlights {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px 24px;
  max-width: 980px; margin: 54px auto 0; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.svc-hl { display: flex; align-items: flex-start; gap: 12px; }
.svc-hl-no { font-family: var(--font-display); font-weight: 600; color: var(--gold);
  font-size: 1.35rem; line-height: 1; flex: none; }
.svc-hl strong { display: block; color: #fff; font-family: var(--font-display);
  font-size: 1rem; letter-spacing: .3px; margin-bottom: 3px; }
.svc-hl span { color: var(--on-dark-2); font-size: .88rem; line-height: 1.45; }

/* Contact CTA panel (button opens the quote modal) */
.contact-cta {
  background: linear-gradient(135deg, #1d1d1d, #0f0f0f);
  border: 1px solid rgba(230,177,38,.22); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 46px 34px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
}
.contact-cta h3 { color: #fff; font-size: 1.7rem; margin: 0; }
.contact-cta p { color: var(--on-dark); margin: 0; max-width: 42ch; }
.contact-cta .btn { width: 100%; max-width: 340px; justify-content: center; }
.contact-cta-or { font-size: .9rem; color: var(--on-dark-2); margin-top: 6px; }
.contact-cta-or a { color: var(--gold); font-weight: 600; word-break: break-word; }

/* ----------------------------- Gallery ---------------------------------- */
.gallery { background: var(--cream); }
.slideshow {
  position: relative; max-width: 980px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--ink); isolation: isolate;
}
.slides { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--ink-dk); }
.slide {
  position: absolute; inset: 0; margin: 0; padding: 0; border: 0; cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center; line-height: 0;
  background: var(--ink-dk); opacity: 0; pointer-events: none;
  transition: opacity .6s var(--ease);
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img {
  max-width: 100%; max-height: 100%; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.slide:hover img, .slide:focus-visible img { transform: scale(1.03); }
.slide .zoom {
  position: absolute; right: 16px; bottom: 16px; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(230,177,38,.95); color: #111;
  opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 3;
}
.slide:hover .zoom, .slide:focus-visible .zoom { opacity: 1; transform: none; }
.slide .zoom svg { width: 18px; height: 18px; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25); color: #fff;
  display: grid; place-items: center; transition: background .2s var(--ease), transform .2s var(--ease);
}
.slide-arrow svg { width: 26px; height: 26px; }
.slide-arrow.prev { left: 16px; }
.slide-arrow.next { right: 16px; }
.slide-arrow.prev:hover, .slide-arrow.next:hover { background: var(--gold); color: #111; transform: translateY(-50%) scale(1.06); }
.slide-count {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 4;
  color: #fff; font-family: var(--font-display); letter-spacing: 1px; font-size: .92rem;
  background: rgba(0,0,0,.6); padding: 5px 16px; border-radius: 30px;
}
.slide-hint { text-align: center; color: var(--muted); margin-top: 18px; font-size: .95rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(5,5,5,.95); align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
body.lb-open { overflow: hidden; }
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 10px; box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lb-btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  color: #fff; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: grid;
  place-items: center; transition: background .2s var(--ease), transform .2s var(--ease);
}
.lb-btn:hover { background: var(--gold); color: #111; transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: 20px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
.lb-count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: #ddd; font-family: var(--font-display); letter-spacing: 1px; font-size: .95rem;
  background: rgba(0,0,0,.45); padding: 6px 16px; border-radius: 30px;
}
@media (max-width: 760px) {
  .slides { aspect-ratio: 4 / 3; }
  .slide-arrow { width: 44px; height: 44px; }
  .slide-arrow.prev { left: 10px; } .slide-arrow.next { right: 10px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ----------------------------- Reviews ---------------------------------- */
.reviews { background: var(--sec-b); color: #fff; position: relative; }
.reviews .sec-head h2 { color: #fff; }
.reviews .sec-head p { color: #cfcfcf; }
.reviews .sec-kicker { color: var(--gold); }
.reviews .sec-kicker::before, .reviews .sec-kicker::after { background: var(--gold); }
.review-summary { display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: -28px 0 40px; flex-wrap: wrap; }
.review-summary .big { font-family: var(--font-display); font-size: 2.4rem; color: #fff; }
.review-summary .stars { color: var(--star); font-size: 1.3rem; letter-spacing: 3px; }
.review-summary .who { color: #c4c4c4; }
.review-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 900px; margin: 0 auto; }
.review {
  background: #fff; color: var(--text); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 12px; position: relative;
}
.review::before {
  content: ""; position: absolute; top: 22px; right: 24px; width: 40px; height: 40px;
  background: url("../images/quotes-gold.png") center/contain no-repeat; opacity: .9;
}
.review .stars { color: var(--star); letter-spacing: 2px; font-size: 1.05rem; }
.review p { font-size: 1rem; color: #34342f; margin: 0; flex: 1; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.review .avatar { width: 42px; height: 42px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600;
  color: #111; background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk)); }
.review .who strong { display: block; color: var(--ink); font-size: .98rem; }
.review .who span { color: var(--muted); font-size: .82rem; }
.reviews-cta { text-align: center; margin-top: 40px; }
.reviews-toggle { display: none; }
.reviews-toggle .rt-chev { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.reviews.reviews-open .reviews-toggle .rt-chev { transform: rotate(180deg); }

/* ----------------------------- Service area ----------------------------- */
.area { background: #fff; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.area .chips span { background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  padding: 8px 16px; border-radius: 30px; font-weight: 600; font-size: .9rem; }
/* Neon Texas radar card */
.area-map {
  position: relative; min-height: 380px; max-width: 460px; margin: 0 auto;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(230,177,38,.2); box-shadow: var(--shadow); isolation: isolate;
  display: grid; place-items: center; text-align: center;
  padding: clamp(1.8rem, 3vw, 2.4rem) clamp(1.2rem, 2.5vw, 2rem);
  background: radial-gradient(ellipse 75% 60% at 50% 42%, #1f1f1f 0%, var(--ink-dk) 72%);
}
/* Faded American flag backdrop behind the Texas map (matches dragonforge). */
.area-map::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: url("../images/flag-bg.jpg") center bottom / auto 112% no-repeat;
  opacity: 0.45; mix-blend-mode: screen;
}
.av-ring {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%);
  border-radius: 50%; border: 1px solid rgba(230,177,38,.12); pointer-events: none; z-index: 1;
}
.av-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.av-badge {
  font-family: var(--font-display); font-size: .8rem; color: var(--gold);
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px;
}
.neon-texas {
  width: 230px; height: auto; margin-bottom: 22px;
  filter: drop-shadow(0 0 4px rgba(230,177,38,.6)) drop-shadow(0 0 12px rgba(230,177,38,.35))
          drop-shadow(0 0 28px rgba(230,177,38,.18));
}
.neon-texas .tx-outline { fill: none; stroke: var(--gold); stroke-width: 6; stroke-linejoin: round; stroke-linecap: round; }
.neon-texas .tx-marker { fill: var(--gold); filter: drop-shadow(0 0 5px rgba(230,177,38,.9)); animation: txMarker 2s ease-in-out infinite; }
.neon-texas .tx-marker-pulse { fill: none; stroke: var(--gold); stroke-width: 6; opacity: 0; transform-origin: 720px 760px; animation: txPulseRing 2.4s ease-out infinite; }
@keyframes txMarker { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
@keyframes txPulseRing { 0% { opacity: .8; transform: scale(.4); } 100% { opacity: 0; transform: scale(2.6); } }
.area-map h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.area-map p { color: #cfcfcf; font-size: 1rem; max-width: 340px; margin: 0 auto 22px; }
@media (max-width: 600px) { .neon-texas { width: 170px; } .area-map { min-height: 320px; } }

/* ----------------------------- Contact ---------------------------------- */
.contact { background: var(--sec-b); color: var(--on-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 38px;
  box-shadow: var(--shadow); position: relative; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(230,177,38,.18); }
.contact-info::before { content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk)); }
.contact-info h3 { color: #fff; }
.contact-info .row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1); }
.contact-info .row:last-child { border-bottom: 0; }
.contact-info .row svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-info .row a { color: #fff; font-weight: 600; }
.contact-info .row a:hover { color: var(--gold); }
.contact-info .row span.label { display:block; font-size:.78rem; letter-spacing:1.5px; text-transform:uppercase; color: var(--gold); margin-bottom:2px; }

/* ----------------------------- Footer ----------------------------------- */
.site-footer { background: var(--ink-dk); color: #cfcfcf; padding: 56px 0 26px;
  border-top: 1px solid rgba(230,177,38,.2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; text-transform: uppercase; font-size: 1rem; letter-spacing: 1px; margin-bottom: 16px; }
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 58px; width: auto; background: #0d0d0d;
  border-radius: 10px; border: 4px solid #0d0d0d;
  box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.footer-brand .brand-name { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .88rem; color: #8f8f8f; }
.footer-bottom .powered-by a { color: var(--gold); font-weight: 600; }
.footer-bottom .powered-by a:hover { color: #fff; text-decoration: underline; }

/* ----------------------------- Reveal animation ------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 1040px) {
  .svc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; }
  .review-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Drawer-only elements hidden on desktop */
.drawer-head, .drawer-cta { display: none; }

@media (max-width: 860px) {
  section { padding: 60px 0; }
  .nav-phone, .nav-cta .js-quote { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 1300; }
  .brand img { height: 38px; }
  .brand-name { font-size: 1.12rem; }
  .brand-name small { font-size: .56rem; letter-spacing: 1.8px; }

  /* full-screen slide-in menu (from the right) */
  .nav-links {
    display: flex; position: fixed; inset: 0; width: 100%; height: 100svh;
    background: var(--ink);
    flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    padding: 92px 28px 40px; z-index: 1200;
    transform: translateX(100%); transition: transform .42s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { list-style: none; width: 100%; max-width: 360px; text-align: center; }
  .nav-links a {
    display: block; color: #f0f0f0; font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 1.5rem; padding: 15px 4px;
  }
  .nav-links a::after { display: none; }
  .nav-links a:active, .nav-links a:hover { color: var(--gold); }

  /* Services dropdown collapses inline inside the mobile drawer */
  .has-dropdown { width: 100%; max-width: 360px; }
  .has-dropdown > a { width: auto; }
  .nav-caret { color: var(--gold); padding: 8px; }
  .nav-caret svg { width: 26px; height: 26px; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
    box-shadow: none; min-width: 0; flex-basis: 100%; width: 100%;
    padding: 6px; margin: 6px 0 4px; display: none;
  }
  .has-dropdown.open .dropdown { display: block; left: auto; transform: none; }
  .dropdown a { color: #eaf1fa; font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 1px; font-size: 1.05rem; padding: 12px; text-align: center; }
  .dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.06); }

  .drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    position: absolute; top: 20px; left: 24px; right: 22px; max-width: none;
  }
  .drawer-head span { font-family: var(--font-display); text-transform: uppercase;
    letter-spacing: 2px; font-size: .82rem; color: var(--gold); }
  .drawer-close { background: none; border: 0; color: #fff; cursor: pointer; padding: 6px;
    border-radius: 8px; line-height: 0; }
  .drawer-close svg { width: 30px; height: 30px; }
  .drawer-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; }
  .drawer-cta .btn { width: 100%; justify-content: center; padding: 15px 20px;
    font-size: 1rem; min-height: 54px; }
  .drawer-cta .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }

  body.menu-open .nav-toggle { opacity: 0; pointer-events: none; }
  body.menu-open { overflow: hidden; }
}
@media (max-width: 760px) {
  .contact-info, .qmodal-card { padding: 26px 20px; }
  .svc-cards { grid-template-columns: 1fr; }
  .svc-highlights { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; padding-top: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Reviews collapse behind a dropdown on mobile */
  .reviews-toggle {
    display: flex; align-items: center; gap: 10px; margin: 20px auto 0; width: max-content;
    font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
    font-size: .92rem; color: #fff; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.22); border-radius: 40px; padding: 13px 24px; cursor: pointer;
  }
  .reviews-toggle:hover { background: rgba(255,255,255,.12); }
  .review-cards { display: none; margin-top: 24px; }
  .reviews.reviews-open .review-cards { display: grid; }
  .reviews-cta { margin-top: 28px; }
  /* Clean, centered hero on mobile */
  .hero { min-height: 100svh; padding-top: 96px; padding-bottom: 76px; text-align: center; }
  .hero .container { display: flex; flex-direction: column; align-items: center; }
  .hero-eyebrow { font-size: .64rem; letter-spacing: 2.5px; margin-bottom: 18px; }
  .hero h1 { max-width: none; }
  .hero-tag { font-size: .92rem; letter-spacing: 3px; }
  .hero-sub { font-size: 1rem; margin: 16px auto 30px; max-width: 38ch; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-badges { display: none; }
  .hero-scroll { display: flex; }
}
@media (max-width: 360px) { .svc-highlights { grid-template-columns: 1fr; } }

/* ===== Dark-section text overrides (Services, Contact) ===== */
.services h2, .contact h2 { color: #fff; }
.services .sec-head p, .contact .sec-head p { color: var(--on-dark-2); }

/* ----------------------------- Loading intro ---------------------------- */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center;
  background: var(--ink-dk); overflow: hidden;
}
.intro-overlay::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(230,177,38,.18) 0%, transparent 62%),
    radial-gradient(ellipse 40% 30% at 50% 55%, rgba(230,177,38,.08) 0%, transparent 65%);
}
.intro-overlay.is-fading { animation: introFade .6s ease-in forwards; }
.intro-overlay.is-done { display: none; }
.intro-stage { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.intro-logo {
  width: 300px; max-width: 76vw; height: auto;
  background: #0d0d0d; border-radius: 16px; border: 10px solid #0d0d0d;
  box-shadow: 0 0 0 1px rgba(0,0,0,.4), 0 16px 40px rgba(0,0,0,.5);
  opacity: 0; transform: scale(.7) translateY(-14px);
  animation: introLogo .8s cubic-bezier(.34,1.56,.64,1) forwards;
}
.intro-text {
  margin-top: 18px; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.3rem, 4vw, 2rem); letter-spacing: 2px; text-transform: uppercase;
  color: #fff; line-height: 1; display: flex; flex-wrap: wrap; justify-content: center; overflow: hidden;
}
.intro-text-letter { display: inline-block; opacity: 0; transform: translateY(18px);
  animation: introLetter .5s cubic-bezier(.22,1,.36,1) forwards; }
.intro-tag {
  margin-top: 14px; font-family: var(--font-body); font-size: .9rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); opacity: 0;
  animation: introTag .6s ease forwards .9s;
}
@keyframes introLogo {
  0% { opacity: 0; transform: scale(.7) translateY(-14px); }
  60% { opacity: 1; transform: scale(1.04) translateY(2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes introLetter { to { opacity: 1; transform: translateY(0); } }
@keyframes introTag { to { opacity: 1; } }
@keyframes introFade { to { opacity: 0; visibility: hidden; } }

/* ----------------------------- Quote modal ------------------------------ */
.qmodal {
  position: fixed; inset: 0; z-index: 3000; display: none;
  align-items: center; justify-content: center; padding: 5vh 20px;
  background: rgba(5,5,5,.7); backdrop-filter: blur(3px);
}
.qmodal.open { display: flex; animation: qmFade .25s ease; }
body.qm-open { overflow: hidden; }
@keyframes qmFade { from { opacity: 0; } to { opacity: 1; } }
.qmodal-card {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 34px 30px; animation: qmRise .35s var(--ease);
}
@keyframes qmRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.qmodal-close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease), color .2s var(--ease);
}
.qmodal-close:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.qmodal-close svg { width: 20px; height: 20px; }
.qmodal-head { text-align: center; margin-bottom: 22px; }
.qmodal-head .sec-kicker { justify-content: center; display: inline-flex; }
.qmodal-head h3 { font-size: 1.7rem; margin: 8px 0 8px; }
.qmodal-head p { color: var(--muted); font-size: .95rem; margin: 0; }
.qmodal-actions { display: grid; gap: 10px; }
.qmodal-actions .btn { width: 100%; }
.qmodal-or { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .85rem; margin: 20px 0; }
.qmodal-or::before, .qmodal-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.qmodal-form { display: grid; gap: 12px; }
.qmodal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qmodal-form input, .qmodal-form select, .qmodal-form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--text); background: #fcfcfb;
}
.qmodal-form input:focus, .qmodal-form select:focus, .qmodal-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(230,177,38,.18);
}
.qmodal-status { display: none; margin: 4px 0 0; font-weight: 600; color: #1c7c43; font-size: .92rem; text-align: center; }
.qmodal-status.ok { display: block; }
@media (max-width: 560px) {
  .qmodal { padding: 3vh 14px; align-items: flex-start; }
  .qmodal-card { padding: 22px 18px; }
  .qmodal-head { margin-bottom: 16px; }
  .qmodal-head h3 { font-size: 1.4rem; margin: 6px 0; }
  .qmodal-head p { font-size: .86rem; }
  .qmodal-actions { gap: 8px; }
  .qmodal-actions .btn { padding: 12px 16px; font-size: .9rem; white-space: nowrap; }
  .qmodal-or { margin: 14px 0; font-size: .8rem; }
  .qmodal-form { gap: 10px; }
}
@media (max-width: 480px) { .qmodal-form .form-row { grid-template-columns: 1fr; } }

/* ===================================================================== */
/* ===================== Service detail pages ========================== */
/* ===================================================================== */
.svc-page-hero {
  position: relative; min-height: 56vh; display: flex; align-items: center;
  color: #fff; padding: 150px 0 80px; overflow: hidden; isolation: isolate;
  background: var(--ink-dk);
}
.svc-page-hero img.svc-hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.svc-page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,8,8,.72) 0%, rgba(8,8,8,.78) 60%, rgba(6,6,6,.95) 100%);
}
.svc-page-hero .crumb { font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 2.5px; font-size: .8rem; color: var(--gold); margin-bottom: 16px; }
.svc-page-hero .crumb a { color: var(--gold); }
.svc-page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase;
  margin-bottom: .25em; }
.svc-page-hero .lead-tag { font-family: var(--font-display); letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.82); font-size: clamp(1rem,2vw,1.25rem); }
.svc-page-hero .hero-actions { margin-top: 30px; }

/* Intro: lead text + "depend on" panel (two columns) */
.svc-intro { background: var(--cream); }
.svc-intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: start; }
.svc-intro-text h2 { margin: 6px 0 18px; }
.svc-intro-text p { font-size: 1.05rem; color: #45453f; }
.svc-intro-text p.big { font-size: 1.22rem; color: var(--ink); font-family: var(--font-display);
  letter-spacing: .3px; line-height: 1.35; margin-bottom: 14px; }
.svc-depend { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.svc-depend::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dk)); }
.svc-depend h3 { font-size: 1.35rem; margin: 6px 0 22px; }
.depend-list { list-style: none; margin: 0 0 26px; padding: 0; }
.depend-list li { position: relative; padding-left: 40px; margin-bottom: 18px; }
.depend-list li::before { content: ""; position: absolute; left: 0; top: 1px; width: 24px; height: 24px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/22px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/22px no-repeat;
}
.depend-list strong { display: block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .3px; color: var(--ink); font-size: 1rem; line-height: 1.2; }
.depend-list span { color: var(--muted); font-size: .9rem; }
.svc-depend .btn { width: 100%; justify-content: center; }

/* Full-width showcase photo */
.svc-showcase { background: var(--cream); }
.svc-showcase .container { max-width: 1000px; }
.svc-showcase img { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid var(--line); }

@media (max-width: 900px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 30px; }
  .svc-showcase img { height: 300px; }
}

/* Feature grid */
.feat { background: #fff; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); }
.feat-card .fno { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-dk); line-height: 1; }
.feat-card h3 { font-size: 1.12rem; margin: 12px 0 8px; }
.feat-card p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Sub-services / material chips */
.svc-tags-sec { background: var(--cream); }
.svc-tags-sec .container { max-width: 880px; text-align: center; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 22px; }
.svc-tags span { background: #fff; border: 1px solid var(--line); color: var(--ink);
  padding: 10px 20px; border-radius: 30px; font-weight: 600; font-size: .95rem; box-shadow: var(--shadow-sm); }

/* Icon cards (kitchen / bathroom sub-services) */
.icon-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.icon-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 14px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.icon-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.icon-card img { width: 52px; height: 52px; object-fit: contain; }
.icon-card span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .4px;
  font-size: .9rem; color: var(--ink); }

/* Photo grid (window / door / fence styles) */
.photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.photo-card { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.photo-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.photo-card figcaption { padding: 14px 16px; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .5px; font-size: 1rem; color: var(--ink); text-align: center; }

@media (max-width: 900px) {
  .icon-cards { grid-template-columns: repeat(3, 1fr); }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .icon-cards { grid-template-columns: repeat(2, 1fr); }
  .photo-grid { grid-template-columns: 1fr; }
}

/* Process steps */
.steps { background: var(--sec-a); color: var(--on-dark); }
.steps .sec-head h2 { color: #fff; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 28px 22px; position: relative; }
.step .snum { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1;
  opacity: .9; }
.step h3 { color: #fff; font-size: 1.1rem; margin: 10px 0 8px; }
.step p { color: var(--on-dark-2); font-size: .9rem; margin: 0; }

/* CTA band */
.svc-band { background: linear-gradient(135deg, #1d1d1d, #0b0b0b); color: #fff; text-align: center;
  border-top: 1px solid rgba(230,177,38,.25); border-bottom: 1px solid rgba(230,177,38,.25); }
.svc-band h2 { color: #fff; }
.svc-band p { color: var(--on-dark); max-width: 52ch; margin: 0 auto 26px; }
.svc-band .hero-actions { justify-content: center; }

/* Other services */
.other-svc { background: var(--cream); }
.other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.other-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); color: var(--ink);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .4px; font-size: 1rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease); }
.other-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: var(--shadow); color: var(--gold-dk); }
.other-card svg { width: 20px; height: 20px; color: var(--gold-dk); flex: none; }

@media (max-width: 1040px) {
  .feat-grid, .step-grid, .other-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feat-grid, .step-grid, .other-grid { grid-template-columns: 1fr; }
  .svc-page-hero { min-height: 50vh; padding-top: 120px; text-align: center; }
  .svc-page-hero .hero-actions { flex-direction: column; gap: 12px; width: 100%; max-width: 360px; }
  .svc-page-hero .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ----------------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
