/* ==========================================================================
   DLST Lightings Lab — Global Stylesheet
   Builds on top of tokens.css — never redefine custom properties here.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

img, video {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ==========================================================================
   2. CONTAINER
   ========================================================================== */
.container {
  width: var(--container);
  margin-inline: auto;
}

/* ==========================================================================
   3. GRID BACKGROUND
   ========================================================================== */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--accent-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--accent-rgb), 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 90% 60% at var(--mx, 50%) var(--my, 30%), rgba(0,0,0,0.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at var(--mx, 50%) var(--my, 30%), rgba(0,0,0,0.6) 0%, transparent 75%);
}

/* ==========================================================================
   4. NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 88px;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}


.nav-inner {
  width: var(--container);
  margin-inline: auto;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  text-decoration: none;
}

/* Real logo image (used in navbar + footer via navbar.js / footer.js) */
.nav-logo-img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Footer logo — slightly smaller */
.footer-logo-img {
  height: 56px;
}

/* Fallback text logo (kept for any pages not yet converted) */
.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, #c41a5e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-logo .accent { color: var(--accent); }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* Desktop nav links — horizontal */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.875rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--surface-2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover { background: var(--surface-2); }

.bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   5. TYPOGRAPHY UTILITIES
   ========================================================================== */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.875rem;
  border-radius: 100px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.neon-headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.accent { color: var(--accent); }
.accent-2 { color: var(--accent-2); }
.text-soft { color: var(--text-soft); }
.text-center { text-align: center; }
.lead {
  font-size: 1.125rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.375rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn:active { transform: translateY(1px) !important; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: #e0235e;
  border-color: #e0235e;
  box-shadow: var(--glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--surface-2);
  border-color: var(--border);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  border-radius: 8px;
}

/* ==========================================================================
   7. SECTION UTILITIES
   ========================================================================== */
.section {
  padding-block: 5.5rem;
  position: relative;
  z-index: 1;
}

.section-sm {
  padding-block: 3.5rem;
  position: relative;
  z-index: 1;
}

.bg-surface {
  background: var(--surface);
}

.bg-alt {
  background: var(--surface-2);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-soft);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ==========================================================================
   8. HOME HERO
   ========================================================================== */
.hero {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at 70% 30%, rgba(var(--accent-rgb), 0.13) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 580px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 1.375rem;
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  color: var(--text-soft);
  line-height: 1.72;
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.45) 0%, rgba(var(--accent2-rgb), 0.25) 100%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.7;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulseGlow 2s ease-in-out infinite;
}

/* ==========================================================================
   9. STATS BAR
   ========================================================================== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 2.25rem;
  position: relative;
  z-index: 1;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--accent);
}

.stat-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 0;
}

.stat-sub {
  font-size: var(--text-xs);
  color: var(--text-soft);
  line-height: 1.4;
  margin-top: 0.125rem;
}

/* ==========================================================================
   10. SERVICE CARDS GRID
   ========================================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin-inline: auto;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-icon {
  font-size: 1.875rem;
  margin-bottom: 0.875rem;
  line-height: 1;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s ease;
  margin-top: auto;
}

.card-link:hover { gap: 0.625rem; }

/* ==========================================================================
   11. WORK PREVIEW GRID (Recent Projects)
   ========================================================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.work-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--surface-2);
}

.work-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.work-card:hover .work-card-img {
  transform: scale(1.07);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 16, 20, 0.82) 0%, transparent 58%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

/* ==========================================================================
   12. FEATURE BLOCKS (Why DLST)
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.875rem;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-block:hover {
  border-color: rgba(var(--accent-rgb), 0.38);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(var(--accent-rgb), 0.07);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.68;
}

/* ==========================================================================
   13. PROCESS STEPS (4-step grid on Home & Services)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Dashed connector between circles */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 0.75rem;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.375rem;
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.12);
  flex-shrink: 0;
  position: relative;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ==========================================================================
   14. AREA PILLS (Where We Work)
   ========================================================================== */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  justify-content: center;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5625rem 1.125rem;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.area-pill:hover {
  background: rgba(var(--accent-rgb), 0.07);
  border-color: rgba(var(--accent-rgb), 0.45);
  color: var(--accent);
}

/* ==========================================================================
   15. PAGE HERO (Inner Pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 160%;
  background: radial-gradient(ellipse at 50% 0%, rgba(var(--accent-rgb), 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1rem;
  position: relative;
}

.page-hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  color: var(--text-soft);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2rem;
  line-height: 1.72;
  position: relative;
}

/* ==========================================================================
   16. BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  margin-bottom: 1.5rem;
  position: relative;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
  list-style: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-soft);
}

.breadcrumbs li + li::before {
  content: '›';
  color: var(--text-soft);
  opacity: 0.45;
  margin-right: 0.125rem;
}

.breadcrumbs a {
  color: var(--text-soft);
  transition: color 0.2s;
}

.breadcrumbs a:hover { color: var(--accent); }

.breadcrumbs [aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* ==========================================================================
   17. SERVICE SPLIT (Service sub-pages alternating layout)
   ========================================================================== */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding-block: 4.5rem;
}

.service-split + .service-split {
  border-top: 1px solid var(--border);
}

.service-split.flip .service-split-img {
  order: 2;
}

.service-split.flip .service-split-body {
  order: 1;
}

.service-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-split-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.service-split-body .eyebrow-pill {
  margin-bottom: 1rem;
}

.service-split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1rem;
}

.service-split-body p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45em;
}

/* ==========================================================================
   18. BENEFITS / VALUE GRID
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.value-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.value-text {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.67;
}

/* ==========================================================================
   19. STORY LAYOUT (About Page)
   ========================================================================== */
.story-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 4.5rem;
  align-items: start;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 1.125rem;
}

.story-content p {
  font-size: 1.0125rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 1.375rem;
}

.story-content p:last-child { margin-bottom: 0; }

.story-sticky {
  position: sticky;
  top: 112px;
}

.story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.story-caption {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: var(--text-soft);
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   20. WORKSHOP FIGURES (About Page)
   ========================================================================== */
.workshop-fig {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.workshop-fig-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.workshop-fig-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.workshop-fig:hover .workshop-fig-img img {
  transform: scale(1.04);
}

.workshop-fig-caption {
  font-size: 0.875rem;
  color: var(--text-soft);
  text-align: center;
  font-style: italic;
}

/* ==========================================================================
   21. CTA BAND
   ========================================================================== */
.cta-band {
  background: #111827;
  padding-block: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -5%;
  width: 45%;
  height: 220%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 0.5rem;
}

.cta-band-desc {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-band-actions {
  display: flex;
  gap: 0.875rem;
  align-items: center;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

.cta-band .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cta-band .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

/* ==========================================================================
   22. FOOTER
   ========================================================================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.68;
  max-width: 290px;
  margin-top: 0.875rem;
}

.footer-nap {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 1.25rem;
}

.footer-nap a,
.footer-nap address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: color 0.2s;
  line-height: 1.55;
}

.footer-nap a:hover { color: var(--accent); }

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--text-soft);
  transition: color 0.2s;
  line-height: 1.5;
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-soft);
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--accent); }

/* ==========================================================================
   23. GALLERY PAGE (working — preserve carefully)
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.125rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  text-align: center;
  max-width: 620px;
  padding-inline: 1rem;
}

.lightbox-counter {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================================================
   24. FAQ
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.22s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: rgba(var(--accent-rgb), 0.38);
}

.faq-question {
  width: 100%;
  padding: 1.375rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.faq-question::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
  display: block;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 1.125rem;
  margin-top: -1px;
}

/* ==========================================================================
   25. CONTACT FORM & LAYOUT
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(var(--accent-rgb), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.info-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.55;
}

.info-text a {
  color: var(--text);
  transition: color 0.2s;
}

.info-text a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8125rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ==========================================================================
   26. PROCESS PAGE (detailed step layout)
   ========================================================================== */
.process-steps-detail {
  display: flex;
  flex-direction: column;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding-block: 5rem;
  border-bottom: 1px solid var(--border);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step.flip .process-step-image {
  order: -1;
}

.process-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.375rem;
}

.process-step-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(var(--accent-rgb), 0.22);
  line-height: 1;
  flex-shrink: 0;
}

.process-step-meta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 0;
}

.process-step-body p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 1.125rem;
}

.process-step-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-step-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.process-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.process-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.process-checklist li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* Timeline / turnaround */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.timeline-card:hover {
  border-color: rgba(var(--accent-rgb), 0.38);
  transform: translateY(-3px);
}

.timeline-duration {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-type {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.375rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ==========================================================================
   27. MAP & SERVICE AREAS
   ========================================================================== */
#service-map,
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--border);
  background: var(--surface-2);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.375rem 1.25rem;
  text-align: center;
  transition: border-color 0.22s ease, transform 0.22s ease;
  display: block;
  color: var(--text);
}

.area-card:hover {
  border-color: rgba(var(--accent-rgb), 0.38);
  transform: translateY(-2px);
  color: var(--accent);
}

.area-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}

.area-card-region {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

/* ==========================================================================
   28. ERROR PAGE
   ========================================================================== */
.error-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 6rem;
  position: relative;
  z-index: 1;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 3px rgba(var(--accent-rgb), 0.25);
  line-height: 1;
  display: block;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   29. MISC UTILITIES
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-pink {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
}

.badge-cyan {
  background: rgba(var(--accent2-rgb), 0.12);
  color: var(--accent-2);
}

.legal-content {
  max-width: 780px;
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.25rem 0 0.875rem;
  letter-spacing: -0.025em;
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.78;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Two-column layout utility (process page misc sections) */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ==========================================================================
   30. SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.45s; }

/* ==========================================================================
   31. RESPONSIVE — Tablet (≤ 1024px)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .service-split {
    gap: 2.5rem;
  }

  .story-layout {
    gap: 2.75rem;
  }

  .gallery-grid {
    columns: 2;
  }

  .service-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    gap: 3rem;
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    gap: 3rem;
  }
}

/* ==========================================================================
   32. RESPONSIVE — Mobile (≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
  /* Navbar: hide desktop links & CTA, show hamburger */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 132px);
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-visual {
    order: -1;
    max-width: 440px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  /* Stats */
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(odd) {
    border-left: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Story & service split */
  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-sticky {
    position: static;
  }

  .service-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3rem;
  }

  .service-split.flip .service-split-img {
    order: 0;
  }

  .hero-img,
  .service-split-img img,
  .process-step-image img,
  .two-col-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .two-col-media {
    aspect-ratio: auto;
  }

  /* CTA band */
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    columns: 1;
  }

  /* Grid layouts */
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Process page */
  .process-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3rem;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Section padding */
  .section {
    padding-block: 4rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }
}

/* ==========================================================================
   33. RESPONSIVE — Small Mobile (≤ 480px)
   ========================================================================== */
@media (max-width: 480px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .service-areas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 2.25rem;
    letter-spacing: -0.035em;
  }

  .section {
    padding-block: 3rem;
  }
}

/* ==========================================================================
   35. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   36. PRINT
   ========================================================================== */
@media print {
  .navbar,
  .grid-bg,
  .cta-band,
  .footer,
  .lightbox {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  a {
    text-decoration: underline;
  }

  .section {
    padding-block: 1.5rem;
  }
}

/* ==========================================================================
   37. SERVICE AREA & COMPATIBILITY UTILITIES
   Aliases and helpers used by service-area pages and older markup patterns.
   ========================================================================== */

/* Section-level text helpers */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

/* Hero action button row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

/* Center buttons when hero-actions or hero-ctas is inside page-hero */
.page-hero .hero-actions,
.page-hero .hero-ctas {
  justify-content: center;
}

/* Subtle background surface variant */
.bg-subtle {
  background: var(--surface-2);
}

/* Two-column section layout (text + media) */
.two-col-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.two-col-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.two-col-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

.two-col-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Services card grid (service-area pages) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

/* Cards inside services-grid have no .card-body wrapper — pad directly */
.services-grid .card {
  padding: 1.5rem;
}

.card-desc {
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.65;
  margin-top: var(--space-2);
}

.card-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  margin-top: var(--space-4);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.card-link-arrow:hover {
  gap: var(--space-3);
}

.card-link-arrow::after {
  content: '→';
}

/* Feature lists inside service-area sections */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* Soft area pill (neighbourhood tags) */
.area-pill--soft {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
}

/* Stat cards */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow);
}

/* CTA band text block alias */
.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Breadcrumb singular alias (maps to .breadcrumbs styling) */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  font-size: var(--text-sm);
  color: var(--text-soft);
}

.breadcrumb a {
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--border);
  margin-right: var(--space-2);
}

/* Responsive overrides for service-area layouts */
@media (max-width: 768px) {
  .two-col-section {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Buttons inside page-hero hero-actions fill width for a clean stacked look */
  .page-hero .hero-actions .btn,
  .page-hero .hero-ctas .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .stat-card {
    padding: var(--space-6) var(--space-4);
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: var(--text-2xl);
  }
}

/* ==========================================================================
   38. FULL-SCREEN HERO SLIDER
   ========================================================================== */

/* Fix navbar to float over the full-screen hero */
body.has-hero .navbar {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

/* Full-screen hero */
body.has-hero .hero {
  height: 100vh;
  min-height: 580px;
  padding: 0;
  margin: 0;
}

/* Remove the decorative radial glow (image provides the backdrop now) */
body.has-hero .hero::before {
  display: none;
}

/* ---- Slides container ---- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* ---- Individual slide ---- */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* ---- Slide background image ---- */
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ---- Dark gradient overlay (left-heavy so text pops on the left) ---- */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13, 59, 102, 0.85) 0%,
      rgba(13, 59, 102, 0.55) 45%,
      rgba(13, 59, 102, 0.20) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 50%
    );
}

/* ---- Text content wrapper (lives inside each .hero-slide) ---- */
.hero-content-wrap {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  /* push content below fixed navbar (88px) */
  padding-top: 108px;
  /* leave room for dots at bottom */
  padding-bottom: 90px;
}

/* ---- Per-slide text: hidden by default, reveals on .active ---- */
.hero-slide .hero-text {
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease 0.45s, transform 0.65s ease 0.45s;
  /* delay so image crossfade leads, text follows */
}

.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Ghost button on dark hero ---- */
.hero-ghost-btn {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.42) !important;
}

.hero-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  box-shadow: none !important;
}

/* ---- Prev / Next arrows ---- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.50);
  transform: translateY(-50%) scale(1.07);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.96) !important;
}

.slider-prev { left: 1.75rem; }
.slider-next { right: 1.75rem; }

/* ---- Dot navigation ---- */
.slider-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 11;
}

.slider-dot {
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.38);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
  flex-shrink: 0;
}

.slider-dot:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: none;
}

/* ---- Scroll cue (bouncing chevron at bottom center-right) ---- */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 11;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollCueBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scrollCueBounce {
  0%, 100% { transform: translateY(0);   opacity: 0.45; }
  50%       { transform: translateY(7px); opacity: 0.85; }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  body.has-hero .hero {
    /* svh = small viewport height — excludes mobile browser chrome so
       the hero never runs taller than the visible screen area */
    height: 100svh;
    height: 100vh; /* fallback for browsers without svh support */
    min-height: 480px;
    max-height: 900px;
  }

  /* Per-slide focal-point tuning on portrait mobile.
     Slide 1 (store-sign)     — Firefly Burger sign is on the RIGHT of the frame;
                                 shift horizontal focus right so it stays visible.
     Slide 2 (neon-in-canada) — neon tree is also right-of-centre.
     Slide 3 (neon-signs)     — LED ceiling spans the top; keep it in frame. */
  .hero-slide:nth-child(1) .hero-slide-img { object-position: 78% 40%; }
  .hero-slide:nth-child(2) .hero-slide-img { object-position: 72% center; }
  .hero-slide:nth-child(3) .hero-slide-img { object-position: center 18%; }

  /* Centre content but bias slightly below the midpoint:
     larger padding-top than padding-bottom shifts the flex
     centre anchor down by ~10% so it lands just past 50% */
  .hero-content-wrap {
    padding-top: 140px;
    padding-bottom: 50px;
    align-items: center;
  }

  .hero-slide .hero-text {
    max-width: 100%;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
  }

  .slider-prev { left: 0.875rem; }
  .slider-next { right: 0.875rem; }

  .scroll-cue {
    right: 1.25rem;
    bottom: 1.75rem;
  }
}

@media (max-width: 480px) {
  .slider-arrow {
    display: none; /* dots are enough on small phones */
  }

  .hero-content-wrap {
    padding-top: 120px;
    padding-bottom: 50px;
    align-items: center;
  }

  /* Tighter headline on very small phones so it doesn't overflow */
  .hero-slide .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    letter-spacing: -0.03em;
  }

  .hero-slide .hero-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* Full-width stacked CTAs on small phones */
  .hero-slide .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-slide .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   39. CONTACT FAB — Floating Action Button
   ========================================================================== */

.contact-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

/* ---- Main toggle button ---- */
.fab-main {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(239, 71, 111, 0.52);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
  z-index: 2;
}

.fab-main:hover {
  box-shadow: 0 6px 32px rgba(239, 71, 111, 0.7);
}

/* Outer pulse ring */
.fab-main::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(239, 71, 111, 0.48);
  pointer-events: none;
  animation: fabRingPulse 2.4s ease-in-out infinite;
}

@keyframes fabRingPulse {
  0%   { transform: scale(0.88); opacity: 0; }
  45%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1.38); opacity: 0; }
}

/* Gentle float (only when menu is closed) */
.contact-fab:not(.open) .fab-main {
  animation: fabFloat 3.4s ease-in-out infinite;
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-8px); }
}

/* Open state — dark background, pulse stops */
.contact-fab.open .fab-main {
  background: #1a1c2a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.contact-fab.open .fab-main::after {
  display: none;
}

/* ---- Icon crossfade ---- */
.fab-icon-default,
.fab-icon-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.3s ease;
}

.fab-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
}

.contact-fab.open .fab-icon-default {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

.contact-fab.open .fab-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ---- Child items stack ---- */
.fab-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

/* ---- Individual item ---- */
.fab-item {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28);
  /* hidden by default */
  opacity: 0;
  transform: scale(0) translateY(18px);
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity   0.3s  ease,
              box-shadow 0.2s ease;
  flex-shrink: 0;
}

.fab-item:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38);
  transform: scale(1.1) translateY(0) !important;
}

.fab-item:active {
  transform: scale(0.93) translateY(0) !important;
}

/* Brand colours */
.fab-whatsapp { background: #25D366; }
.fab-call     { background: #0A84FF; }
.fab-email    { background: var(--accent); }

/* Tooltip label */
.fab-label {
  position: absolute;
  right: calc(100% + 0.75rem);
  white-space: nowrap;
  background: rgba(8, 10, 18, 0.9);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.3125rem 0.75rem;
  border-radius: 7px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.fab-item:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Open state: staggered entrance ---- */
/* nth-child order in DOM: 1=email(top), 2=call, 3=whatsapp(bottom)
   Stagger: WhatsApp pops first (closest to main button), email last */
.contact-fab.open .fab-item {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.contact-fab.open .fab-item:nth-child(3) { transition-delay: 0.02s; }  /* WhatsApp */
.contact-fab.open .fab-item:nth-child(2) { transition-delay: 0.07s; }  /* Call     */
.contact-fab.open .fab-item:nth-child(1) { transition-delay: 0.12s; }  /* Email    */

/* ---- Mobile ---- */
@media (max-width: 480px) {
  .contact-fab {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .fab-main {
    width: 54px;
    height: 54px;
  }

  .fab-item {
    width: 44px;
    height: 44px;
  }
}

/* ===== Contact form status message ===== */
.form-status {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.form-status-ok {
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #d8ffe8;
}
.form-status-err {
  background: rgba(239, 71, 111, 0.12);
  border: 1px solid rgba(239, 71, 111, 0.5);
  color: #ffe1e9;
}
