/* Triangle Wraps — premium dark / gold / neon */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --surface: #111111;
  --text: #e8e6e3;
  --muted: #9a9690;
  --gold: #d4af37;
  --gold-dim: rgba(212, 175, 55, 0.15);
  --neon: #39ff88;
  --neon-dim: rgba(57, 255, 136, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Syne", "Segoe UI", system-ui, sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: #000;
  z-index: 1000;
  border-radius: 4px;
}

.skip-link:focus {
  left: 0.5rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  padding: 1rem 1.5rem;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.logo-mark {
  color: var(--neon);
  font-size: 1.25rem;
  line-height: 1;
  text-shadow: 0 0 24px rgba(57, 255, 136, 0.45);
}

.logo-accent {
  color: var(--gold);
  margin-left: 0.15em;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold);
  color: #0a0a0a !important;
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.35);
}

.nav-phone {
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-phone:hover,
.nav-phone:focus-visible {
  color: var(--text) !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.nav-email {
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.nav-email:hover,
.nav-email:focus-visible {
  color: var(--text) !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 1.2s ease;
  z-index: 0;
  animation: heroKenburns 22s ease-in-out infinite alternate;
}

.hero-bg.is-transitioning {
  opacity: 0.88;
}

@keyframes heroKenburns {
  0% {
    transform: scale(1.04) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-1.2%, -0.8%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(5, 5, 5, 0.92) 0%,
    rgba(5, 5, 5, 0.55) 45%,
    rgba(5, 5, 5, 0.75) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.07;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 1.25rem;
  animation: fadeUp 0.9s ease both;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  animation: fadeUp 0.9s ease 0.08s both;
  color: #f7f4ef;
}

@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero h1 {
    background: linear-gradient(120deg, #fff 0%, #e8e0d0 45%, rgba(212, 175, 55, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-sub {
  margin: 0 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--muted);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.9s ease 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp 0.9s ease 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  color: #0a0a0a;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.4);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--neon);
  color: var(--neon);
}

.btn-block {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.hero-dots {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  background: var(--neon);
  transform: scale(1.35);
  box-shadow: 0 0 14px rgba(57, 255, 136, 0.55);
}

@media (max-width: 768px) {
  .hero-dots {
    bottom: 4.5rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Sections */
.section {
  padding: 5.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Services */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-4px);
}

.service-card--reverse {
  direction: rtl;
}

.service-card--reverse > * {
  direction: ltr;
}

.service-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-media img:first-child {
  transform: scale(1.06);
}

.service-media-secondary {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 42% !important;
  height: auto !important;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transition: transform 0.6s ease;
}

.service-card:hover .service-media-secondary {
  transform: translateY(-6px) scale(1.02);
}

.service-body h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

/* Visual scope — 8 category storytelling grid */
.visual-scope {
  max-width: 1320px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.scope-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.scope-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.scope-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.scope-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.scope-card:hover .scope-img img {
  transform: scale(1.07);
}

.scope-card figcaption {
  padding: 1rem 1.1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}

/* Scroll reveal (progressive enhancement) */
html.js .js-reveal:not(.is-in-view) {
  opacity: 0;
  transform: translateY(36px);
}

.js-reveal {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .js-reveal.is-in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-body p {
  margin: 0;
  color: var(--muted);
}

/* Industries */
.industries {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.industries .section-header {
  padding: 0 1.5rem;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.industry-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: 420px;
}

.industry-tile {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.industry-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  filter: grayscale(0.2) brightness(0.75);
}

.industry-tile:hover img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(0.9);
}

.industry-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: var(--text);
  border-top: 2px solid var(--neon);
}

/* Portfolio */
.portfolio .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  color: var(--text);
  border-color: rgba(57, 255, 136, 0.45);
}

.filter-btn.is-active {
  color: #0a0a0a;
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 28px rgba(57, 255, 136, 0.25);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.portfolio-item.is-hidden {
  display: none;
}

.portfolio-img-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-item:hover .portfolio-img-wrap img {
  transform: scale(1.08);
}

.portfolio-item figcaption {
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.process-step {
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, var(--gold-dim), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
}

.process-step:hover::before {
  opacity: 1;
}

.step-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 0.75rem;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.process-visual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.process-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.process-visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.process-visual figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  margin: 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.testimonial-card p {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.testimonial-card footer {
  font-size: 0.85rem;
  color: var(--muted);
}

.testimonial-card strong {
  color: var(--text);
}

/* CTA + Form */
.cta-band {
  position: relative;
  max-width: none;
  padding: 5.5rem 1.5rem;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../images/lambo-triangle-wrap.png") center/cover no-repeat;
  filter: brightness(0.4) saturate(1.05);
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.7) 50%, rgba(57, 255, 136, 0.08) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.cta-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.cta-copy p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.cta-contact-line {
  margin-top: -0.5rem !important;
}

.cta-contact-line a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-contact-line a:hover,
.cta-contact-line a:focus-visible {
  color: var(--neon);
}

.quote-form {
  padding: 2rem;
  background: rgba(12, 12, 12, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.two {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(57, 255, 136, 0.5);
  box-shadow: 0 0 0 3px var(--neon-dim);
}

.field input[type="file"] {
  padding: 0.6rem;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form .field select,
.quote-form .field select.quote-form-select {
  color-scheme: light;
  background-color: #ffffff;
  color: #0a0a0a;
}

.quote-form .field select option {
  background-color: #ffffff;
  color: #0a0a0a;
  font-weight: 500;
}

.quote-form .field select:focus {
  color: #0a0a0a;
}

.form-note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.form-note a {
  color: var(--gold);
  font-weight: 600;
}

.form-note a:hover,
.form-note a:focus-visible {
  color: var(--neon);
}

/* Footer */
.site-footer {
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.footer-seo {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.footer-phone {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-phone a {
  color: var(--gold);
}

.footer-phone a:hover,
.footer-phone a:focus-visible {
  color: var(--neon);
}

.footer-email {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-email a {
  color: var(--gold);
}

.footer-email a:hover,
.footer-email a:focus-visible {
  color: var(--neon);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Sticky quote + call */
.sticky-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.sticky-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sticky-quote {
  background: linear-gradient(135deg, var(--neon) 0%, #1fa860 100%);
  color: #050505;
  box-shadow: 0 12px 40px rgba(57, 255, 136, 0.35);
}

.sticky-quote:hover,
.sticky-quote:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(57, 255, 136, 0.5);
}

.sticky-call {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  min-width: 5.5rem;
}

.sticky-call:hover,
.sticky-call:focus-visible {
  background: var(--gold);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-visual-row {
    grid-template-columns: 1fr;
  }

  .industry-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    padding: 1.25rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 1rem auto 1rem;
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav li:last-child {
    border-bottom: none;
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.5rem;
  }

  .industry-strip {
    grid-template-columns: 1fr 1fr;
  }

  .industry-tile img {
    min-height: 280px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .sticky-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .sticky-actions a {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 520px) {
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .industry-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-bg {
    animation: none !important;
  }

  html.js .js-reveal:not(.is-in-view) {
    opacity: 1;
    transform: none;
  }
}
