:root {
  /* ── Palette ── */
  --bg:        #ffffff;
  --surface-1: #f5f5f5;
  --surface-2: #efefef;
  --surface-3: #e0e0e0;
  --text:      #000000;
  --muted:     rgba(0, 0, 0, 0.60);
  --muted-2:   rgba(0, 0, 0, 0.38);
  --line:      rgba(166, 166, 166, 0.35);
  --line-hi:   rgba(166, 166, 166, 0.55);
  --silver:    #a6a6a6;
  --accent:    #c0fc00;
  --accent-dim: rgba(192, 252, 0, 0.18);

  /* ── Tokens ── */
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.45);
  --shadow:    0 16px 56px rgba(0,0,0,0.55);
  --shadow-lg: 0 28px 80px rgba(0,0,0,0.65);
  --radius:    16px;
  --radius-sm: 10px;
  --container: 1140px;
  --pad:       20px;
  --heading:   "Jost", system-ui, -apple-system, sans-serif;
  --body:      "Inter", system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background:
    radial-gradient(ellipse 1400px 400px at 50% -60px, rgba(192,252,0,0.05) 0%, transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-weight: 600;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(192,252,0,0.35); }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 9999;
  padding: 10px 14px; border-radius: var(--radius-sm);
  background: var(--accent); color: #000;
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.skip-link:focus { left: 12px; }

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto; padding: 0 var(--pad);
}

.eyebrow {
  display: block; margin-bottom: 8px;
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 11px; color: var(--accent);
}
.eyebrow--muted  { color: var(--muted); }
.eyebrow--center { text-align: center; }

.section { padding: 80px 0; }

.section__header      { margin-bottom: 40px; }
.section__header--tight { margin-bottom: 24px; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin-inline: auto; }

.section__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 36px; line-height: 1.0; color: var(--text);
}
.services__headline { font-size: 18px; }
.section__subtitle {
  margin-top: 12px; color: var(--muted);
  max-width: 58ch; font-size: 15px; line-height: 1.65;
}

/* ── NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 13px var(--pad);
  max-width: var(--container); margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(192,252,0,0.5) 100%);
  box-shadow: 0 0 12px rgba(192,252,0,0.40);
}
.brand__text {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.13em; font-size: 15px; line-height: 1;
  white-space: nowrap;
}
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__link {
  display: none; padding: 9px 12px; border-radius: 8px;
  color: var(--muted); font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px;
  transition: color 160ms, background 160ms;
}
.nav__link:hover { color: var(--text); background: var(--surface-2); }
.nav__phone {
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.04em;
  padding: 6px 10px; white-space: nowrap;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--accent); }
.contact__phone {
  font-size: 14px; color: var(--muted); margin-top: 10px;
}
.contact__phone a { color: var(--accent); font-weight: 600; }
.contact__phone a:hover { text-decoration: underline; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line-hi);
  background: var(--surface-2); color: var(--text);
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; line-height: 1;
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
              background 200ms, border-color 200ms;
  will-change: transform;
}
.btn:hover   { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active  { transform: translateY(0); }
.btn--primary {
  background: var(--accent); border-color: var(--accent);
  color: #000; box-shadow: 0 8px 32px rgba(192,252,0,0.25);
}
.btn--primary:hover { background: #ceff1a; box-shadow: 0 12px 48px rgba(192,252,0,0.40); }
.btn--ghost   { background: transparent; }
.btn--outline { background: transparent; border-color: var(--line-hi); }
.btn--sm      { padding: 9px 16px; font-size: 12px; }

/* ── HERO ── */
.hero {
  position: relative; min-height: calc(100svh - 50px);
  display: flex; align-items: center;
  padding: 80px 0 60px; overflow: hidden;
}
.hero__bg  { position: absolute; inset: 0; z-index: 0; }
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.80;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.12) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.98) 0%, transparent 45%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
.hero__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.04em;
  font-size: 60px; line-height: 0.92;
  margin-bottom: 18px;
  color: #fff;
}
.hero__subtitle {
  color: rgba(255,255,255,0.75); max-width: 42ch; font-size: 16px; margin-bottom: 28px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.hero__actions .btn--ghost,
.hero__actions .btn--outline { color: #fff !important; border-color: rgba(255,255,255,0.45); }
.hero__actions .btn--ghost:hover,
.hero__actions .btn--outline:hover { border-color: rgba(255,255,255,0.8); }
.hero__fade {
  position: absolute; inset: auto 0 0; height: 160px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  pointer-events: none; z-index: 1;
}

/* ── SERVICE GRID ── */
.services-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }

/* ── SERVICE CARDS ── */
.service-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; min-height: 280px; background: var(--surface-1);
  display: block; cursor: pointer;
}
.service-card__img-wrap { position: absolute; inset: 0; overflow: hidden; }
.service-card__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
  filter: brightness(0.85);
}
.service-card:hover .service-card__img {
  transform: scale(1.06); filter: brightness(0.95);
}
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.9)  0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.12) 100%);
  transition: background 400ms var(--ease);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6)  45%,
    rgba(0,0,0,0.22) 100%);
}
.service-card__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
}
.service-card__accent {
  width: 32px; height: 3px; border-radius: 2px;
  background: var(--accent); margin-bottom: 10px;
  transition: width 350ms var(--ease);
}
.service-card:hover .service-card__accent { width: 52px; }
.service-card__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.09em;
  font-size: 28px; line-height: 1; color: #fff;
  margin-bottom: 6px;
}
.service-card__desc {
  color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.45;
  margin-bottom: 10px;
}
.service-card__cta {
  display: inline-block; font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px;
  color: var(--accent); opacity: 0; transform: translateY(6px);
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}
.service-card:hover .service-card__cta { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
.section--about { padding-top: 80px; padding-bottom: 80px; }
.about { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; }
.about__left {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-1); box-shadow: var(--shadow);
}
.about__img-stack { position: relative; height: 340px; }
.about__img {
  position: absolute; border-radius: var(--radius); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about__img--back  { width: 78%; height: 88%; top: 0; right: 0; border: 1px solid var(--line); }
.about__img--front {
  width: 66%; height: 76%; bottom: 0; left: 0;
  border: 2px solid rgba(192,252,0,0.35);
  outline: 5px solid rgba(255,255,255,0.8);
}
.about__headline {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 36px; line-height: 1.0; margin-bottom: 12px;
}
.about__lead { color: var(--muted); max-width: 52ch; }
.about__stats {
  display: grid; grid-template-columns: 1fr;
  gap: 8px; margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface-2);
}
.stat__value {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 14px;
}
.stat__label { color: var(--muted-2); font-size: 13px; }

/* ── CONTACT ── */
.section--contact { padding-top: 80px; }
.form {
  margin-top: 24px; padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--surface-1); box-shadow: var(--shadow);
}
.form__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.field        { display: grid; gap: 8px; }
.field--full  { grid-column: 1 / -1; }
.field__label {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px; color: var(--muted);
}
.field__input {
  width: 100%; border-radius: var(--radius-sm);
  border: 1px solid var(--line-hi); background: var(--surface-2);
  padding: 12px 14px; color: var(--text); outline: none;
  transition: border-color 180ms, box-shadow 180ms, background 180ms;
}
.field__input::placeholder { color: var(--muted-2); }
.field__input:focus {
  border-color: rgba(192,252,0,0.7);
  box-shadow: 0 0 0 4px rgba(192,252,0,0.12);
  background: var(--surface-3);
}
.field__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px; background-repeat: no-repeat;
  padding-right: 42px;
}
.field__textarea { resize: vertical; min-height: 140px; }
.form__actions {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.form__note { color: var(--muted-2); font-size: 13px; }

/* ── FOOTER ── */
.footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  background: #000000;
  color: #ffffff;
}
.footer__inner { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: center; }
.footer__headline {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 13px; color: #c0fc00; margin-bottom: 10px;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__link {
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid rgba(166,166,166,0.28); background: #1a1a1a;
  color: rgba(255,255,255,0.62); font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px;
  transition: transform 180ms var(--ease), border-color 180ms, color 180ms, background 180ms;
}
.footer__link:hover {
  transform: translateY(-1px);
  border-color: rgba(192,252,0,0.4);
  color: #ffffff; background: #2a2a2a;
}
.footer__meta { color: rgba(255,255,255,0.38); font-size: 13px; }
.footer__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.62); font-family: var(--heading);
  font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 12px;
  transition: color 180ms;
}
.footer__back:hover { color: #c0fc00; }

/* ──────────────────────────────────────────────
   CATEGORY PAGE STYLES
   ────────────────────────────────────────────── */

/* Category hero */
.cat-hero {
  position: relative; min-height: 60vh;
  display: flex; align-items: flex-end;
  padding: 60px 0 48px; overflow: hidden;
}
.cat-hero__bg  { position: absolute; inset: 0; }
.cat-hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.7;
}
.cat-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.98) 0%,  rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.cat-hero__body  { position: relative; z-index: 2; }
.cat-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px; font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px;
  color: var(--accent);
}
.cat-hero__label::before {
  content: ""; display: block;
  width: 28px; height: 2px; border-radius: 2px;
  background: var(--accent);
}
.cat-hero__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 56px; line-height: 0.92; color: #fff;
  margin-bottom: 14px;
}
.cat-hero__sub {
  color: rgba(236,236,236,0.7); max-width: 48ch; font-size: 16px; line-height: 1.6;
  margin-bottom: 24px;
}
.cat-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-hero__fade {
  position: absolute; inset: auto 0 0; height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none; z-index: 1;
}

/* Gallery grid */
.gallery-section { padding: 64px 0 80px; }
.gallery-section .section__header { margin-bottom: 28px; }

.gallery-note {
  display: inline-block; margin-bottom: 28px;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface-1);
  font-size: 12px; color: var(--muted);
}

.gallery-grid {
  columns: 2;
  column-gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-1);
}
.gallery-item img {
  width: 100%; height: auto;
  display: block;
  transition: transform 600ms var(--ease), filter 400ms;
  filter: brightness(0.9);
}
.gallery-item:hover img { transform: scale(1.03); filter: brightness(1); }

/* Service detail */
.service-detail { padding: 72px 0; }
.service-detail__grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px; align-items: start;
}
.service-detail__content {
  padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-1); box-shadow: var(--shadow);
}
.service-detail__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 32px; margin-bottom: 14px; color: var(--text);
}
.service-detail__body {
  color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px;
}
.service-detail__includes {
  padding-top: 18px; border-top: 1px solid var(--line);
}
.service-detail__includes-title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--accent); margin-bottom: 12px;
}
.includes-list {
  list-style: none; display: grid;
  grid-template-columns: 1fr 1fr; gap: 8px;
}
.includes-list li {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 14px;
}
.includes-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.service-detail__cta {
  margin-top: 22px;
}
.service-detail__preview {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 380px; box-shadow: var(--shadow-lg);
}
.service-detail__preview img {
  width: 100%; height: 100%; object-fit: cover;
}
.service-detail__preview-badge {
  position: absolute; bottom: 16px; left: 16px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--accent);
}

/* Breadcrumb nav on category pages */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--heading); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color 160ms; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--muted-2); }

/* CTA strip */
.cta-strip {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  text-align: center;
  background: linear-gradient(to bottom, transparent, rgba(192,252,0,0.05), transparent);
}
.cta-strip__title {
  font-family: var(--heading); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.07em;
  font-size: 40px; margin-bottom: 12px;
}
.cta-strip__sub {
  color: var(--muted); max-width: 46ch; margin: 0 auto 24px;
  font-size: 15px;
}
.cta-strip__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

/* ── RESPONSIVE ── */
@media (min-width: 480px) {
  :root { --pad: 24px; }
  .hero__title    { font-size: 78px; }
  .cat-hero__title { font-size: 72px; }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { columns: 3; }
  .about__stats   { grid-template-columns: repeat(3, 1fr); }
  .stat           { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 768px) {
  .nav__link  { display: inline-flex; }
  .hero__title { font-size: 96px; }
  .cat-hero__title { font-size: 88px; }
  .section__title  { font-size: 44px; }
  .services__headline { font-size: 22px; }
  .services-grid   { grid-template-columns: repeat(4, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .service-card    { min-height: 360px; }
  .about           { grid-template-columns: 1fr 1fr; gap: 28px; }
  .about__img-stack { height: 440px; }
  .form__grid      { grid-template-columns: 1fr 1fr; }
  .footer__inner   { grid-template-columns: 1fr auto; }
  .footer__right   { text-align: right; }
  .service-detail__grid { grid-template-columns: 1fr 1fr; }
  .cat-hero { min-height: 65vh; padding: 80px 0 60px; }
}

@media (min-width: 1024px) {
  .hero__title     { font-size: 118px; }
  .cat-hero__title { font-size: 100px; }
  .section__title  { font-size: 50px; }
  .services__headline { font-size: 25px; }
  .service-card__title { font-size: 32px; }
  .cta-strip__title { font-size: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .service-card__img, .service-card__cta, .service-card__accent,
  .gallery-item img, .btn, .footer__link, .field__input { transition: none !important; }
  .service-card:hover .service-card__img,
  .gallery-item:hover img { transform: none !important; }
}

/* ══════════════════════════════════════
   DARK THEME (toggled via button)
   ══════════════════════════════════════ */

[data-theme="dark"] {
  --bg:        #000000;
  --surface-1: #111111;
  --surface-2: #1f1f1f;
  --surface-3: #3f3f3f;
  --text:      #ffffff;
  --muted:     rgba(255, 255, 255, 0.62);
  --muted-2:   rgba(255, 255, 255, 0.38);
  --line:      rgba(166, 166, 166, 0.15);
  --line-hi:   rgba(166, 166, 166, 0.28);
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.45);
  --shadow:    0 16px 56px rgba(0,0,0,0.55);
  --shadow-lg: 0 28px 80px rgba(0,0,0,0.65);
}

[data-theme="dark"] body {
  background:
    radial-gradient(ellipse 1600px 700px at 50% -100px, rgba(192,252,0,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 1000px 600px at 95% 30%, rgba(80,80,80,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 800px 500px at 5% 70%, rgba(63,63,63,0.10) 0%, transparent 55%),
    var(--bg);
}

[data-theme="dark"] .site-header {
  background: rgba(0,0,0,0.85);
}

/* Footer is always black — no overrides needed */

/* Accent dots/marks stay lime in dark */
[data-theme="dark"] .includes-list li::before { background: #c0fc00; }
[data-theme="dark"] .service-detail__preview-badge { background: rgba(0,0,0,0.82); color: #c0fc00; }

/* Cards in dark */
[data-theme="dark"] .about__img--front {
  border-color: rgba(192,252,0,0.25);
  outline-color: rgba(0,0,0,0.7);
}

/* Buttons in dark */
[data-theme="dark"] .btn--ghost  { border-color: rgba(166,166,166,0.28); }
[data-theme="dark"] .btn--outline { border-color: rgba(166,166,166,0.28); }

/* ══════════════════════════════════════
   ACCENT TEXT — light bg readability
   Lime (#c0fc00) is unreadable on white; use deep green for small text
   ══════════════════════════════════════ */

/* Default (light) — small accent text uses deep green */
.eyebrow:not(.eyebrow--muted)          { color: #5a8a00; }
.service-detail__includes-title        { color: #5a8a00; }
.service-card__cta                     { color: #5a8a00; }
.includes-list li::before              { background: #5a8a00; }
.service-detail__preview-badge         { background: rgba(240,240,240,0.88); color: #5a8a00; }
.breadcrumb a:hover                    { color: #5a8a00; }
.brand__mark                           { box-shadow: 0 0 12px rgba(90,138,0,0.35); }
.contact__phone a                      { color: #5a8a00; }

/* Overrides for elements on dark photo backgrounds — lime is fine */
.cat-hero__label                       { color: #c0fc00; }
.cat-hero__label::before               { background: #c0fc00; }

/* Dark theme — restore full lime */
[data-theme="dark"] .eyebrow:not(.eyebrow--muted) { color: #c0fc00; }
[data-theme="dark"] .service-detail__includes-title { color: #c0fc00; }
[data-theme="dark"] .service-card__cta             { color: #c0fc00; }
[data-theme="dark"] .breadcrumb a:hover            { color: #c0fc00; }
[data-theme="dark"] .contact__phone a              { color: #c0fc00; }
[data-theme="dark"] .brand__mark                   { box-shadow: 0 0 12px rgba(192,252,0,0.35); }

/* Cards/surfaces subtle lift in light */
.service-card { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.gallery-item { box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

/* Buttons */
.btn--ghost   { border-color: rgba(0,0,0,0.18); }
.btn--outline { border-color: rgba(0,0,0,0.18); }

/* ── LIGHTBOX ── */
#lb-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center; justify-content: center;
  padding: 20px;
}
#lb-overlay.lb-active { display: flex; }

#lb-img {
  max-width: 100%; max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  opacity: 1;
  transition: opacity 150ms ease;
}

#lb-close {
  position: fixed; top: 16px; right: 20px;
  background: none; border: none;
  color: #fff; font-size: 36px; line-height: 1;
  cursor: pointer; opacity: 0.8;
  transition: opacity 160ms;
  z-index: 10000;
}
#lb-close:hover { opacity: 1; }

#lb-prev, #lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 22px; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; opacity: 0.75;
  transition: opacity 160ms, background 160ms;
  z-index: 10000;
}
#lb-prev { left: 14px; }
#lb-next { right: 14px; }
#lb-prev:hover, #lb-next:hover { opacity: 1; background: rgba(255,255,255,0.16); }

#lb-counter {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-family: var(--heading);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  z-index: 10000;
}

/* ── THEME TOGGLE BUTTON ── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-hi);
  background: var(--surface-2);
  cursor: pointer; font-size: 16px; line-height: 1;
  flex-shrink: 0;
  transition: background 200ms, border-color 200ms, transform 200ms var(--ease), box-shadow 200ms;
}
.theme-toggle:hover {
  background: var(--surface-3);
  transform: scale(1.08);
  box-shadow: var(--shadow-sm);
}
.theme-toggle:active { transform: scale(0.96); }

