/* Discount Signs and Wraps — Norbit concept demo */
:root {
  --bg: #080c12;
  --surface: #111827;
  --surface-2: #1a2332;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --red: #dc2626;
  --red-bright: #ef4444;
  --blue: #2563eb;
  --blue-bright: #3b82f6;
  --gold: #fbbf24;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --banner-h: 2.25rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.has-norbit-demo-banner { padding-top: var(--banner-h); }

img { max-width: 100%; height: auto; display: block; }

/* Unified image frames — consistent crop & alignment */
.media-frame,
.why-image,
.service-img,
.contact-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
}
.media-frame img,
.why-image img,
.service-img img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

a { color: var(--blue-bright); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: #60a5fa; }

/* Demo banner */
.norbit-demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  padding: 0.45rem 0.75rem;
  font: 600 0.72rem/1.4 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-align: center;
  color: #f8fafc;
  background: linear-gradient(90deg, #1e3a5f, #0f172a);
  border-bottom: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.norbit-demo-banner a { color: #67e8f9; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: var(--banner-h);
  z-index: 1000;
  background: rgba(8, 12, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0.35rem clamp(1rem, 4vw, 2rem);
  min-height: var(--header-h);
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}
.logo-link:hover { color: var(--text); }
.logo-link img {
  height: clamp(3.5rem, 9vw, 4.25rem);
  width: auto;
  max-width: min(24rem, 68vw);
  object-fit: contain;
  display: block;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--red-bright);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  border-radius: 9999px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.header-cta:hover { color: #fff; background: var(--red-bright); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem clamp(1rem, 4vw, 2rem) 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 0.5rem;
}
.nav-mobile a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Layout */
.container {
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section { padding: clamp(3rem, 8vw, 5.5rem) 0; }
.section-header { margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-bright);
}
.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-header p {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-header.center p { margin: 0 auto; }

/* Hero */
.hero {
  position: relative;
  min-height: clamp(28rem, 85vh, 42rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8,12,18,0.7) 40%, rgba(8,12,18,0.35) 100%),
    linear-gradient(to right, rgba(8,12,18,0.85) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 2rem);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}
.badge i { color: var(--gold); font-size: 0.75rem; }
.hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #cbd5e1;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}
.btn-primary:hover { color: #fff; background: var(--red-bright); }
.btn-secondary {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--text); background: rgba(255,255,255,0.14); }
.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-bright);
}

/* Stats */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 0;
}
.stat {
  text-align: center;
  padding: 0.5rem;
}
.stat strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--red-bright);
  line-height: 1.1;
}
.stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}
.card-grid--services {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.card-grid--services .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-grid--services .card p {
  flex: 1;
}
.card {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(220, 38, 38, 0.35);
  transform: translateY(-3px);
}
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  font-size: 1.25rem;
  color: var(--red-bright);
  background: rgba(220, 38, 38, 0.12);
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
}
.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red-bright);
}
.card a.card-link:hover { color: #f87171; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin: 0;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1rem 1rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.gallery-item:hover figcaption { transform: translateY(0); }

/* Homepage bento — 1 large + 4 small, fills grid exactly */
.gallery-grid--bento {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  align-items: stretch;
}
.gallery-grid--bento .gallery-item.featured {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
  align-self: stretch;
  min-height: 100%;
}
.gallery-grid--bento .gallery-item:not(.featured) {
  aspect-ratio: 4 / 3;
}

/* Why us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #cbd5e1;
}
.why-list i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--red-bright);
}
.why-image {
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #991b1b 0%, var(--red) 50%, #b91c1c 100%);
  text-align: center;
}
.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
}
.cta-band p {
  margin: 0 0 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.25); color: #fff; }

/* Brand panel — alternate logo artwork */
.brand-panel {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-panel-grid {
  display: grid;
  grid-template-columns: 1fr minmax(14rem, 22rem) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.brand-panel-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-panel-copy p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}
.brand-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.brand-stats li {
  font-size: 0.875rem;
  color: #cbd5e1;
}
.brand-stats strong {
  color: var(--red-bright);
  font-weight: 800;
  margin-right: 0.35rem;
}
.brand-panel-logo {
  text-align: center;
}
.brand-panel-logo img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
.brand-tagline {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-bright);
  line-height: 1.5;
}
.brand-panel-social p {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}
.social-callout {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.social-callout:hover {
  color: var(--text);
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: var(--surface-2);
}
.social-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  font-size: 1.15rem;
  color: #fff;
}
.social-callout--fb .social-callout-icon { background: #1877f2; }
.social-callout--yt .social-callout-icon { background: #ff0000; }
.social-callout-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}
.social-callout-text strong {
  font-size: 0.9rem;
  font-weight: 700;
}
.social-callout-text span {
  font-size: 0.78rem;
  color: var(--muted);
}
.social-callout-arrow {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--dim);
  transition: color 0.2s, transform 0.2s;
}
.social-callout:hover .social-callout-arrow {
  color: var(--red-bright);
  transform: translateX(2px);
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font: 600 0.95rem/1.4 var(--font);
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q i { color: var(--red-bright); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dim);
}
.contact-card a,
.contact-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.contact-card a { color: var(--blue-bright); }

.form-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { min-height: 7rem; resize: vertical; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.area-tag {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 9999px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: clamp(18rem, 42vh, 26rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.02);
  transition: transform 8s var(--ease);
}
.page-hero:hover .page-hero-bg img {
  transform: scale(1.06);
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8, 12, 18, 0.82) 45%, rgba(8, 12, 18, 0.55) 100%),
    linear-gradient(to right, rgba(8, 12, 18, 0.9) 0%, rgba(8, 12, 18, 0.4) 55%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.page-hero h1 {
  margin: 0 0 0.75rem;
  max-width: 20ch;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.6;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.page-hero .eyebrow {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* Showcase marquee */
.showcase-marquee {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.showcase-marquee__track {
  display: flex;
  gap: 0.75rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.showcase-marquee__track:hover {
  animation-play-state: paused;
}
.showcase-marquee__item {
  flex-shrink: 0;
  width: clamp(10rem, 18vw, 14rem);
  aspect-ratio: 4/3;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.showcase-marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Visual showcase band */
.showcase-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.showcase-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, transparent 50%, rgba(37, 99, 235, 0.06) 100%);
  pointer-events: none;
}
.showcase-band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.showcase-band-grid .showcase-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: var(--surface-2);
}
.showcase-band-grid .showcase-cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s var(--ease);
}
.showcase-band-grid .showcase-cell:hover img {
  transform: scale(1.05);
}
.showcase-band-grid .showcase-cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}


/* Gallery page collage hero variant */
.page-hero--collage .page-hero-bg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  min-height: 100%;
}
.page-hero--collage .page-hero-bg img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transform: none;
  animation: none;
}
.page-hero--collage .page-hero-bg::after {
  background:
    linear-gradient(to top, var(--bg) 0%, rgba(8, 12, 18, 0.88) 50%, rgba(8, 12, 18, 0.7) 100%),
    rgba(8, 12, 18, 0.35);
}

/* Service detail */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-img { order: 2; }
.service-block.reverse .service-text { order: 1; }
.service-img {
  aspect-ratio: 4 / 3;
}
.service-text h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.service-text p { margin: 0 0 1rem; color: var(--muted); }
.service-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}
.service-features i { color: var(--red-bright); font-size: 0.75rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border-radius: 9999px;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 2.5rem;
  width: auto;
  max-width: 12rem;
  margin-bottom: 0.75rem;
  object-fit: contain;
}
.footer-brand p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 22rem;
}
.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--dim);
}
.footer-bottom a { color: var(--dim); }
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  color: var(--muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.social-links a:hover { color: var(--red-bright); border-color: rgba(220,38,38,0.4); }

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .contact-grid, .service-block, .footer-grid { grid-template-columns: 1fr; }
  .service-block.reverse .service-img,
  .service-block.reverse .service-text { order: unset; }
  .gallery-grid,
  .gallery-grid--bento,
  .showcase-band-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--bento { grid-template-rows: auto; }
  .gallery-grid--bento .gallery-item.featured {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .gallery-grid--bento .gallery-item:not(.featured) {
    aspect-ratio: 4 / 3;
  }
  .card-grid--services { grid-template-columns: repeat(2, 1fr); }
  .brand-panel-grid { grid-template-columns: 1fr; }
  .brand-panel-logo { order: -1; }
  .brand-panel-copy,
  .brand-panel-social { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero--collage .page-hero-bg { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .gallery-grid,
  .gallery-grid--bento,
  .showcase-band-grid { grid-template-columns: 1fr; }
  .card-grid--services { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
