/* ==========================================================================
   Integrity Coaters LLC — styles
   Palette: Azure Blue · Premium Gold · Chrome/Silver on near-black navy
   ========================================================================== */

:root {
  /* Brand blue (matched to the IC logo emblem) */
  --blue: #1e9bd7;
  --blue-bright: #46b7ef;
  --blue-deep: #1476a8;

  /* Accent gold */
  --gold: #e6b24d;
  --gold-bright: #f6c869;
  --gold-deep: #c8922f;

  /* Chrome / silver (echoes the logo's metallic lettering) */
  --chrome: #d5dde4;
  --chrome-dim: #8c99a5;

  --black: #080b10;
  --panel: #0e131a;
  --panel-2: #131a22;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --text: #eef2f6;
  --muted: #9aa7b3;
  --muted-2: #6c7883;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 18px 44px -18px rgba(230, 178, 77, 0.5);
  --shadow-blue: 0 18px 44px -18px rgba(30, 155, 215, 0.5);
  --container: 1200px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient page background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(30, 155, 215, 0.12), transparent 60%),
    radial-gradient(800px 600px at 5% 110%, rgba(230, 178, 77, 0.07), transparent 60%),
    var(--black);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Keyboard focus visibility (mouse clicks stay clean) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

h1, h2, h3, h4, .eyebrow, .btn, .nav a, .step-num, .brand-text {
  font-family: "Saira Condensed", "Inter", sans-serif;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.hl-gold { color: var(--gold-bright); }
.hl-blue { color: var(--blue-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  color: #1a1204;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -18px rgba(230, 178, 77, 0.62); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); transform: translateY(-3px); }

.link-arrow {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--gold-bright);
  transition: color .2s, transform .2s var(--ease);
}
.link-arrow:hover { color: var(--blue-bright); transform: translateX(4px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 11, 16, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 60px; height: 60px;
  border-radius: 50%;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.55));
}

/* Header: oversized emblem that overhangs the 74px bar (~50% overflowing below),
   reading over the hero. Wordmark stays vertically centered in the bar. */
.site-header .brand {
  position: relative;
  gap: 0;
  min-height: 74px;
  padding-left: 121px;
}
.site-header .brand-mark {
  position: absolute;
  left: 0; top: 4px;
  width: 105px; height: 105px;
  z-index: 3;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.6));
}
.brand-text { display: flex; flex-direction: column; line-height: 0.96; text-transform: uppercase; }
.brand-text strong {
  font-size: 1.34rem; font-weight: 800; letter-spacing: 0.03em;
  background: linear-gradient(180deg, #ffffff 0%, var(--chrome) 45%, var(--chrome-dim) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand-text span { font-size: 0.82rem; font-weight: 700; color: var(--gold); letter-spacing: 0.26em; }

.nav { display: flex; gap: 28px; }
.nav a {
  position: relative;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 0;
  transition: color .2s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--gold);
  transition: width .28s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.98rem; color: var(--text);
  transition: color .2s;
}
.header-phone:hover { color: var(--blue-bright); }
.header-phone svg { color: var(--blue-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  width: 26px; height: 2.5px; border-radius: 3px; background: var(--text);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .55; z-index: 0; pointer-events: none;
}
.hero-glow-blue { width: 620px; height: 620px; background: rgba(30,155,215,.30); top: -180px; left: -120px; }
.hero-glow-gold { width: 540px; height: 540px; background: rgba(230,178,77,.20); bottom: -200px; right: -100px; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* Let grid columns shrink below content min-width so nothing forces horizontal overflow */
.hero-copy, .hero-showcase { min-width: 0; }

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.hbadge {
  display: flex; flex-direction: column;
  padding: 14px 20px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 120px;
}
.hbadge strong {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--blue-bright);
  line-height: 1;
}
.hbadge span { font-size: 0.82rem; color: var(--muted); letter-spacing: .02em; }

/* Hero showcase — featured photo (truck) + thumbnail row */
.hero-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--panel);
  aspect-ratio: 16 / 11;
}
.hero-feature img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.hero-feature:hover img { transform: scale(1.03); }

.hero-thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--panel);
  aspect-ratio: 4 / 3;
}
.hero-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.hero-thumb:hover img { transform: scale(1.06); }

.showcase-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(8,11,16,.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 100px;
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 42px;
  border: 2px solid var(--line-strong);
  border-radius: 100px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--gold);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(30,155,215,.06), rgba(230,178,77,.05));
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.25rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-style: normal; font-size: .7rem; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding: 100px 0; position: relative; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 20%),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 800; line-height: 1.02; text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  grid-column: span 1;
  padding: 30px 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px 200px at 50% -20%, rgba(30,155,215,.16), transparent 70%);
  opacity: 0; transition: opacity .35s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(30,155,215,.45); box-shadow: var(--shadow); }
.service-card:hover::after { opacity: 1; }

.svc-icon {
  width: 54px; height: 54px; border-radius: 15px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,155,215,.20), rgba(230,178,77,.14));
  border: 1px solid var(--line-strong);
  color: var(--blue-bright);
  margin-bottom: 18px;
}
.svc-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.4rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .01em; }
.service-card p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Split / industries ---------- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card {
  padding: 40px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  transition: transform .35s var(--ease), border-color .35s;
}
.split-card:hover { transform: translateY(-4px); }
.split-card:nth-child(1):hover { border-color: rgba(30,155,215,.45); }
.split-card:nth-child(2):hover { border-color: rgba(230,178,77,.5); }
.split-badge {
  display: inline-block;
  font-family: "Saira Condensed", sans-serif;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 100px; margin-bottom: 20px;
}
.split-badge-blue { color: var(--blue-bright); background: rgba(30,155,215,.12); border: 1px solid rgba(30,155,215,.3); }
.split-badge-gold { color: var(--gold-bright); background: rgba(230,178,77,.12); border: 1px solid rgba(230,178,77,.32); }
.split-card h3 { font-size: 1.9rem; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; line-height: 1.02; }
.split-card > p { color: var(--muted); margin-bottom: 22px; }

.feature-list { list-style: none; margin-bottom: 24px; }
.feature-list li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.98rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue-bright); box-shadow: 0 0 10px rgba(30,155,215,.6);
}
.split-card:nth-child(2) .feature-list li::before { background: var(--gold); box-shadow: 0 0 10px rgba(230,178,77,.6); }

/* ---------- Why Integrity (trust values — replaces review carousel) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(30,155,215,.07), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), border-color .35s;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(230,178,77,.4); }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(230,178,77,.20), rgba(30,155,215,.14));
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
}
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1.28rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .96rem; }

.reviews-cta {
  margin-top: 46px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center;
}
.reviews-cta p { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.reviews-cta .cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ---------- Before / After (featured) ---------- */
.ba-figure {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.ba-figure img { width: 100%; max-height: 560px; object-fit: cover; }
.ba-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 28px 22px;
  background: linear-gradient(180deg, transparent, rgba(8,11,16,.92));
  font-size: .98rem; color: var(--muted);
}
.ba-caption strong {
  display: block; font-family: "Saira Condensed", sans-serif;
  font-size: 1.3rem; color: var(--text); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 2px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 44px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}
/* Wide (landscape) tile — spans two columns; stretches to match the row height */
.gallery-item.gi-wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 16px 15px;
  background: linear-gradient(180deg, transparent, rgba(8,11,16,.9));
  transform: translateY(6px); opacity: .9;
  transition: transform .35s var(--ease), opacity .35s;
}
.gallery-item:hover figcaption { transform: translateY(0); opacity: 1; }
.gallery-item figcaption span {
  font-family: "Saira Condensed", sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--text);
}
.gallery-item::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(230,178,77,0);
  transition: box-shadow .35s;
}
.gallery-item:hover::before { box-shadow: inset 0 0 0 2px rgba(230,178,77,.55); }

.work-cta { text-align: center; }
.work-cta p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.work-cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}
.process-step {
  padding: 30px 22px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s;
}
.process-step:hover { transform: translateY(-5px); border-color: rgba(30,155,215,.4); }
.step-num {
  display: block;
  font-family: "Saira Condensed", sans-serif;
  font-size: 2.6rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--blue-bright), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.28rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; }
.process-step p { color: var(--muted); font-size: .92rem; }

/* ---------- About ---------- */
.about-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
}
.about-media { position: relative; }
.about-media > img {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.7; object-fit: cover; object-position: 50% 20%;
}
.about-media-badge {
  position: absolute; right: -14px; bottom: -18px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px 14px 14px;
  background: rgba(14,19,26,.94);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-media-badge img { width: 46px; height: 46px; border-radius: 50%; }
.about-media-badge strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .02em; }
.about-media-badge span { font-size: .82rem; color: var(--muted); }

.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 18px; }
.about-copy > p { color: var(--muted); font-size: 1.06rem; margin-bottom: 16px; }
.about-copy em { color: var(--text); font-style: italic; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; margin-top: 26px; }
.apoint { display: flex; align-items: center; gap: 11px; font-weight: 500; }
.apoint svg { width: 22px; height: 22px; color: var(--blue-bright); flex-shrink: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30,155,215,.10), rgba(230,178,77,.08)),
    var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,155,215,.18), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; text-transform: uppercase; line-height: 1; margin-bottom: 14px; }
.cta-inner p { color: var(--muted); font-size: 1.15rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; line-height: 1.02; margin-bottom: 14px; }
.contact-lead { color: var(--muted); font-size: 1.06rem; margin-bottom: 30px; max-width: 440px; }

.contact-list { list-style: none; display: grid; gap: 18px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(30,155,215,.18), rgba(230,178,77,.12));
  border: 1px solid var(--line-strong);
  color: var(--blue-bright);
}
.ci-icon svg { width: 22px; height: 22px; }
.contact-list strong { display: block; font-family: "Saira Condensed", sans-serif; font-size: 1.08rem; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 2px; }
.contact-list a, .ci-plain { color: var(--muted); transition: color .2s; }
.contact-list a:hover { color: var(--blue-bright); }

.contact-socials { display: flex; gap: 12px; }
.contact-socials a {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all .25s var(--ease);
}
.contact-socials a:hover { color: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-3px); }

/* Location map */
.map-wrap {
  position: relative;
  margin-top: 34px;
  height: clamp(300px, 42vw, 440px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: #0b0f14;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-directions {
  position: absolute; right: 16px; bottom: 16px; z-index: 2;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.6);
}

/* Form */
.contact-form-wrap {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(30,155,215,.12), transparent 58%),
    linear-gradient(180deg, #141b23 0%, #0d1219 100%);
  border: 1px solid rgba(30,155,215,.30);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow), 0 26px 60px -28px rgba(30,155,215,.32);
  overflow: hidden;
}
.contact-form-wrap::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.contact-form h3 { font-size: 1.5rem; font-weight: 700; text-transform: uppercase; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.field-opt { text-transform: none; letter-spacing: 0; font-weight: 400; opacity: .7; }
.field input, .field select, .field textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2346b7ef' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(30,155,215,.22);
  background: rgba(255,255,255,.09);
}
.form-note { font-size: .84rem; color: var(--muted-2); text-align: center; margin-top: 14px; }
.form-note a { color: var(--blue-bright); }
.form-note.success { color: var(--blue-bright); font-weight: 600; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--panel-2); border-top: 1px solid var(--line); padding-top: 64px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .96rem; max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.03); border: 1px solid var(--line);
  color: var(--muted); transition: all .25s var(--ease);
}
.footer-socials a:hover { color: var(--blue-bright); border-color: var(--blue-bright); transform: translateY(-3px); }

.footer-col h4 {
  font-size: 1.02rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); margin-bottom: 16px;
}
.footer-col a { display: block; color: var(--muted); font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--blue-bright); }

.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom span { color: var(--muted-2); font-size: .88rem; }

/* ==========================================================================
   MOBILE FLOATING CALL BUTTON (shown on mobile only)
   ========================================================================== */
.call-fab { display: none; }
@keyframes fabPulse {
  0%   { box-shadow: 0 12px 26px -8px rgba(230,178,77,.7), 0 0 0 0 rgba(230,178,77,.5); }
  70%  { box-shadow: 0 12px 26px -8px rgba(230,178,77,.7), 0 0 0 16px rgba(230,178,77,0); }
  100% { box-shadow: 0 12px 26px -8px rgba(230,178,77,.7), 0 0 0 0 rgba(230,178,77,0); }
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .scroll-cue span, .call-fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-showcase { max-width: 560px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* In the 2-col gallery the wide tile becomes a normal tile (avoids an empty cell) */
  .gallery-item.gi-wide { grid-column: span 1; aspect-ratio: 3 / 4; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-header .brand-mark { width: 92px; height: 92px; }
  .site-header .brand { padding-left: 106px; }
}

@media (max-width: 760px) {
  .nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .nav {
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(8,11,16,.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    transform: translateY(-140%);
    transition: transform .4s var(--ease);
  }
  .nav.open { display: flex; transform: translateY(0); }
  .nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .nav a::after { display: none; }

  .section { padding: 72px 0; }
  .hero { padding: 124px 0 50px; min-height: auto; }
  .scroll-cue { display: none; }

  .site-header .brand-mark { width: 96px; height: 96px; top: 3px; }
  .site-header .brand { padding-left: 106px; }

  .call-fab {
    display: grid;
    place-items: center;
    position: fixed;
    right: 24px;
    bottom: 30px;
    z-index: 95;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
    color: #1a1204;
    animation: fabPulse 2.4s ease-out infinite;
    -webkit-tap-highlight-color: transparent;
    transition: transform .2s var(--ease);
  }
  .call-fab:active { transform: scale(.93); }

  .split-grid { grid-template-columns: 1fr; }
  .split-card { padding: 30px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 22px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 540px) {
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { gap: 10px; }
  .hbadge { min-width: 0; flex: 1; padding: 12px 14px; }
  .btn { padding: 13px 22px; }
  .hero-cta { width: 100%; flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .about-media-badge { right: 8px; left: 8px; }
  .brand-text span { letter-spacing: .2em; }
  .site-header .brand-mark { width: 88px; height: 88px; }
  .site-header .brand { padding-left: 98px; }
}
