:root {
  --bg: #1a1418;
  --bg-strong: #241a20;
  --ink: #f4e8ea;
  --brand: #c62828;
  --brand-dark: #8e1111;
  --accent: #ff7b7b;
  --card: #2a1e25;
  --line: #5d3f49;
  --glow: rgba(198, 40, 40, 0.3);
  --shadow: 0 18px 36px rgba(7, 5, 7, 0.46);
  --surface-strong: rgba(33, 23, 29, 0.84);
  --surface-soft: rgba(42, 30, 37, 0.72);
  --bg-highlight-1: #39232d;
  --bg-highlight-2: #322031;
  --grid-line-1: rgba(224, 105, 105, 0.28);
  --grid-line-2: rgba(150, 52, 95, 0.2);
  --page-dim-opacity: 0.38;
  --season-tint: rgba(116, 39, 56, 0.16);
  --image-base-filter: brightness(0.76) saturate(0.92) contrast(1.06);
  --image-hover-filter: brightness(0.9) saturate(1.02) contrast(1.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(140% 100% at 20% 10%, var(--bg-highlight-1) 0%, transparent 45%),
    radial-gradient(120% 90% at 82% 85%, var(--bg-highlight-2) 0%, transparent 48%),
    linear-gradient(180deg, #130f14 0%, var(--bg) 45%, #130f14 100%);
  color: var(--ink);
  position: relative;
  overflow-x: hidden;
  padding-top: 190px;
  padding-bottom: 2rem;
  transition: background 0.6s ease, color 0.4s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.78;
  background-image:
    repeating-linear-gradient(
      0deg,
      var(--grid-line-1) 0,
      var(--grid-line-1) 2px,
      transparent 2px,
      transparent 56px
    ),
    repeating-linear-gradient(
      90deg,
      var(--grid-line-2) 0,
      var(--grid-line-2) 2px,
      transparent 2px,
      transparent 56px
    );
  mix-blend-mode: screen;
  animation: grid-drift 6s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 5, 12, var(--page-dim-opacity)) 0%, rgba(3, 5, 12, calc(var(--page-dim-opacity) + 0.06)) 100%),
    radial-gradient(circle at 50% 40%, var(--season-tint), transparent 58%);
  animation: pulse-glow 2.8s ease-in-out infinite;
}

body > * {
  position: relative;
  z-index: 2;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.7;
}

.bg-shape-1 {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, #f2a0a0 0%, #f8d9d9 52%, transparent 74%);
  top: -85px;
  right: -75px;
}

.bg-shape-2 {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #e98f8f 0%, #f5d2d2 50%, transparent 76%);
  bottom: -120px;
  left: -100px;
}

.side-border {
  position: fixed;
  top: 0;
  width: 56px;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
  filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 0 10px rgba(170, 36, 36, 0.55));
}

.side-border-left {
  left: 0;
}

.side-border-right {
  right: 0;
  transform: scaleX(-1);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero-banner {
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.95) 0%, rgba(142, 17, 17, 0.95) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.hero-content h1 {
  color: #fff;
  margin: 0 0 0.5rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero-tagline {
  font-size: 1.2rem;
  margin: 0.8rem auto 1.5rem;
  max-width: 60ch;
  line-height: 1.6;
  color: #f5e6e6;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-ctas .btn:hover {
  background: #f5e6e6;
  transform: translateY(-3px);
}

.services-highlight {
  padding: 2.5rem 0 3rem;
}

.services-highlight h2 {
  font-family: "Orbitron", sans-serif;
  text-align: center;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.8px;
}

.services-intro {
  text-align: center;
  max-width: 68ch;
  margin: 0 auto 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #c9b0b8;
}

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

.service-item {
  background: linear-gradient(145deg, #fff9f9 0%, #fceeee 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(142, 17, 17, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.8rem;
}

.service-item h3 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--brand-dark);
}

.service-item p {
  font-size: 0.95rem;
  color: #e2d3d8;
  line-height: 1.5;
  margin: 0.6rem 0 0;
}

.service-highlights .service-item:nth-child(1),
.service-highlights .service-item:nth-child(2),
.service-highlights .service-item:nth-child(3),
.service-highlights .service-item:nth-child(4) {
  background: linear-gradient(145deg, rgba(176, 28, 44, 0.95) 0%, rgba(132, 18, 30, 0.98) 100%);
  border-color: rgba(255, 164, 178, 0.5);
}

.service-highlights .service-item:nth-child(1) h3,
.service-highlights .service-item:nth-child(2) h3,
.service-highlights .service-item:nth-child(3) h3,
.service-highlights .service-item:nth-child(4) h3,
.service-highlights .service-item:nth-child(1) p,
.service-highlights .service-item:nth-child(2) p,
.service-highlights .service-item:nth-child(3) p,
.service-highlights .service-item:nth-child(4) p {
  color: #fff4f5;
}

.trust-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  padding: 3rem;
  background: linear-gradient(180deg, rgba(240, 240, 240, 0.5) 0%, transparent 100%);
  margin: 3rem auto;
  border-radius: 20px;
  max-width: 1100px;
  width: 92vw;
}

.faq {
  padding: 0.5rem 0 2.8rem;
}

.faq h2 {
  text-align: center;
}

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

.trust-item {
  text-align: center;
  padding: 1.5rem;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  font-size: 1.8rem;
  border-radius: 50%;
  margin-bottom: 0.8rem;
}

.trust-item h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: var(--brand-dark);
}

.trust-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.review-item {
  background: linear-gradient(160deg, #101612 0%, #0c1009 60%, #130f07 100%);
  border: 1.5px solid rgba(0, 220, 80, 0.18);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.72), 0 0 28px rgba(0,180,60,0.07);
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 255, 80, 0.022) 0px,
    rgba(0, 255, 80, 0.022) 1px,
    transparent 1px,
    transparent 5px
  );
  animation: review-scan 4s linear infinite;
}

.review-item::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 5%;
  width: 90%;
  height: 70%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 35% 100%, rgba(255, 110, 10, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 72% 90%, rgba(255, 72, 0, 0.08) 0%, transparent 45%);
  animation: goo-rise 7s ease-in-out infinite alternate;
}

.review-item > * {
  position: relative;
  z-index: 1;
}

.review-item .review-quote,
.review-item .review-quote cite {
  color: #b4e6ac;
}

.reviews h2 {
  color: #3ddd78;
}

.review-rating {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.review-quote {
  border: none;
  background: transparent;
  box-shadow: none;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(10px);
  background: var(--surface-strong);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  overflow: hidden;
}

.nav-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.45rem 0;
  gap: 1rem;
}

a {
  color: #d4b896;
  text-decoration-color: #b8976e;
}

a:hover {
  color: #e8cfa8;
  text-decoration-color: #d4b896;
}

.nav-links {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #d4b896;
  font-weight: 600;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 20, 34, 0.92) 0%, rgba(33, 11, 17, 0.88) 100%);
  border: 1px solid rgba(218, 235, 255, 0.18);
  box-shadow: 0 12px 28px rgba(9, 5, 7, 0.4);
  z-index: -1;
}

.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 255, 70, 0.022) 3px,
    rgba(0, 255, 70, 0.022) 4px
  );
  opacity: 1;
  transition: opacity 0.4s ease;
}

.brand:hover::after {
  opacity: 0;
}

.brand-logo {
  width: min(820px, 72vw);
  height: auto;
  max-width: 100%;
  max-height: 145px;
  object-fit: contain;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  display: block;
  filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 2px 8px rgba(5, 12, 24, 0.45)) drop-shadow(0 0 0px rgba(0, 0, 0, 0));
  animation: logo-glitch 7s linear infinite;
  transition: filter 0.45s ease;
}

.brand:hover .brand-logo {
  animation: none;
  filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 2px 8px rgba(5, 12, 24, 0.45)) drop-shadow(0 0 36px rgba(100, 200, 255, 0.95));
}

.logo-showcase {
  padding: 0.5rem 0 2.8rem;
}

.logo-showcase h2 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.8px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  margin-bottom: 0.45rem;
  text-align: center;
}

.logo-copy {
  text-align: center;
  margin: 0 auto 1.1rem;
}

.logo-stage {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  padding: 1rem;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 16px;
  border: 2px solid rgba(198, 40, 40, 0.45);
  pointer-events: none;
}

.logo-stage::before {
  animation: broadcast-ring 2.4s linear infinite;
}

.logo-stage::after {
  animation: broadcast-ring 2.4s linear infinite 1.2s;
}

.showcase-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 700px);
  max-height: min(60vh, 520px);
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(198, 40, 40, 0.42));
}

.nav-cta {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 24px rgba(142, 17, 17, 0.3);
}

.hero {
  padding: 5rem 0 3.8rem;
  text-align: center;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.06;
}

h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  margin: 0.7rem auto 0.9rem;
  max-width: 18ch;
}

.hero-copy {
  max-width: 72ch;
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin: 0 auto 1.5rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  text-decoration: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0.84rem 1.18rem;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 20, 20, 0.25);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
}

.btn-outline {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid #d8b1b1;
}

.services {
  padding: 1rem 0 2.8rem;
}

.about,
.process,
.reviews {
  padding: 0.5rem 0 2.6rem;
}

.services h2,
.about h2,
.process h2,
.reviews h2,
.projects h2,
.contact h2 {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.8px;
  font-size: clamp(1.65rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
  text-align: center;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.about .card {
  text-align: left;
}

.about a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}

.card {
  background: linear-gradient(140deg, rgba(52, 34, 44, 0.94) 0%, rgba(40, 28, 35, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.projects {
  padding: 0.4rem 0 3rem;
}

#projects {
  scroll-margin-top: 270px;
}

.before-after {
  padding: 1rem 0 2rem;
}

.before-after h2 {
  font-family: "Orbitron", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
}

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

.before-after-card {
  background: linear-gradient(145deg, rgba(54, 34, 46, 0.95) 0%, rgba(43, 31, 38, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.before-after-card h3 {
  text-align: center;
  margin: 0 0 0.6rem;
  font-family: "Orbitron", sans-serif;
}

.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.before-after-pair figure {
  margin: 0;
}

.before-after-pair figcaption {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.4rem;
}

.projects-copy {
  text-align: center;
  max-width: 66ch;
  margin: 0 auto 1.2rem;
}

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

.project-album {
  margin-bottom: 1.5rem;
}

.project-album.is-hidden {
  display: none;
}

.project-album h3 {
  text-align: center;
  margin: 0.25rem 0 0.8rem;
  font-family: "Orbitron", sans-serif;
}

.load-more-wrap {
  text-align: center;
  margin-top: 0.4rem;
}

.project-shot {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  filter: var(--image-base-filter);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.project-shot:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 40px rgba(118, 20, 20, 0.32);
  filter: var(--image-hover-filter);
}

.process .card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.review-toggle {
  display: block;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
}

.review-quote {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 200, 80, 0.14);
  background: linear-gradient(160deg, #0d1510 0%, #0b1309 50%, #13100a 100%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 -8px 36px rgba(255, 105, 0, 0.055);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  animation: review-expand 0.3s ease;
}

@keyframes review-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.review-quote cite {
  display: block;
  margin-top: 0.9rem;
  font-style: normal;
  font-weight: 700;
  color: #50ef8a;
}

@keyframes review-scan {
  0%   { transform: translateY(0); }
  100% { transform: translateY(5px); }
}

@keyframes goo-rise {
  0%   { transform: translateY(0) scale(1);    opacity: 0.45; }
  100% { transform: translateY(-38%) scale(1.1); opacity: 1; }
}

.contact {
  padding: 0.2rem 0 4.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-items: start;
}

.contact-info {
  background: linear-gradient(150deg, rgba(44, 30, 38, 0.96) 0%, rgba(36, 26, 33, 0.98) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
}

.email-display {
  margin-top: 0.45rem;
}

.email-display a {
  color: #d4b896;
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  background: rgba(40, 28, 35, 0.97);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7b3b3;
  border-radius: 10px;
  padding: 0.74rem;
  font: inherit;
  color: var(--ink);
  background: rgba(24, 18, 22, 0.9);
}

.contact-form textarea {
  resize: vertical;
}

.full {
  margin-top: 1rem;
  width: 100%;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(20, 14, 18, 0.95);
  padding: 2rem 0 2.4rem;
  text-align: center;
  font-size: 0.86rem;
  margin-top: 3rem;
}

.theme-badge {
  display: inline-block;
  border-radius: 999px;
  border: 1px solid rgba(230, 178, 186, 0.42);
  background: rgba(62, 34, 42, 0.72);
  color: #ffe8ec;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.22rem 0.6rem;
}

.site-footer-name {
  color: #f0dfa0;
  font-weight: 600;
  font-style: normal;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  margin: 0;
}

.footer-name-glitch {
  display: inline-block;
  color: #f0dfa0;
  font-style: italic;
  animation: text-glitch 7s linear infinite;
  transition: text-shadow 0.45s ease, color 0.45s ease;
  cursor: default;
}

.footer-name-glitch:hover {
  animation: none;
  color: #a8d8ff;
  text-shadow: 0 0 14px rgba(100, 200, 255, 0.95), 0 0 32px rgba(80, 180, 255, 0.65);
}

@keyframes text-glitch {
  0%, 86%, 93%, 100% {
    text-shadow: none;
    transform: translate(0, 0) skewX(0deg);
    opacity: 1;
    color: #f0dfa0;
  }
  87% {
    text-shadow: -6px 0 rgba(0, 255, 80, 0.9), 4px 0 rgba(57, 255, 20, 0.7);
    transform: translate(-5px, 1px) skewX(-8deg);
    opacity: 0.65;
    color: #a0ffb8;
  }
  88% {
    text-shadow: 6px 0 rgba(0, 255, 100, 1), -5px 0 rgba(0, 200, 60, 0.85);
    transform: translate(5px, -1px) skewX(6deg);
    opacity: 0.85;
    color: #80ff90;
  }
  89% {
    text-shadow: none;
    transform: translate(0, 0) skewX(0deg);
    opacity: 0.2;
    color: #f0dfa0;
  }
  90% {
    text-shadow: -4px 0 rgba(57, 255, 20, 0.9), 3px 0 rgba(0, 255, 80, 0.8);
    transform: translate(-3px, 1px) skewX(-5deg);
    opacity: 0.9;
    color: #a0ffb8;
  }
  91% {
    text-shadow: 4px 0 rgba(0, 255, 70, 0.95);
    transform: translate(3px, -1px) skewX(4deg);
    opacity: 0.75;
    color: #80ff90;
  }
  92% {
    text-shadow: 0 0 6px rgba(0, 200, 60, 0.4);
    transform: translate(-1px, 0) skewX(-2deg);
    opacity: 0.95;
    color: #f0dfa0;
  }
}

.status-page {
  padding: 1.2rem 0 4rem;
}

.status-intro {
  text-align: left;
}

.status-intro h1 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.status-meta {
  margin: 0.6rem 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.status-card {
  text-align: left;
}

.status-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.status-pill {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill.pending {
  background: #f6ecec;
  color: #774545;
  border-color: #ddb8b8;
}

.status-pill.pass {
  background: #e9f8ef;
  color: #145c2e;
  border-color: #8dd3a5;
}

.status-pill.warn {
  background: #fff5e8;
  color: #8a4c03;
  border-color: #f0c08c;
}

.status-pill.fail {
  background: #fdeaea;
  color: #7d1717;
  border-color: #eea3a3;
}

.status-details {
  margin: 0;
  line-height: 1.55;
}

.status-log-wrap {
  margin-top: 1rem;
}

.status-log {
  background: #241113;
  color: #f4dddd;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid #4b2427;
  min-height: 170px;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 0.9rem;
}

body.time-day {
  --page-dim-opacity: 0.34;
}

body.time-evening {
  --page-dim-opacity: 0.44;
  --season-tint: rgba(152, 78, 53, 0.22);
  --image-base-filter: brightness(0.72) saturate(0.9) contrast(1.08);
  --image-hover-filter: brightness(0.86) saturate(1.02) contrast(1.1);
}

body.time-night {
  --page-dim-opacity: 0.54;
  --bg-highlight-1: #281e2e;
  --bg-highlight-2: #1f2238;
  --season-tint: rgba(52, 88, 156, 0.24);
  --grid-line-1: rgba(120, 78, 154, 0.26);
  --grid-line-2: rgba(78, 110, 170, 0.2);
  --image-base-filter: brightness(0.64) saturate(0.88) contrast(1.1);
  --image-hover-filter: brightness(0.78) saturate(0.98) contrast(1.12);
}

body.season-summer {
  --season-tint: rgba(188, 92, 38, 0.18);
  --accent: #ff996f;
}

body.season-autumn {
  --season-tint: rgba(172, 78, 28, 0.22);
  --accent: #ff8a55;
}

body.season-winter {
  --season-tint: rgba(74, 105, 164, 0.24);
  --accent: #8bb6ff;
}

body.season-spring {
  --season-tint: rgba(146, 71, 129, 0.2);
  --accent: #ff88d7;
}

body.holiday-christmas {
  --brand: #cf2d2d;
  --brand-dark: #1e7a3f;
  --season-tint: rgba(40, 140, 88, 0.24);
  --grid-line-1: rgba(201, 45, 45, 0.3);
  --grid-line-2: rgba(53, 143, 91, 0.22);
}

body.holiday-newyear {
  --brand: #2f7be2;
  --brand-dark: #6c2dc7;
  --season-tint: rgba(73, 95, 177, 0.25);
}

body.holiday-halloween {
  --brand: #db5b1d;
  --brand-dark: #51206b;
  --season-tint: rgba(170, 78, 22, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.75s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}

.reveal:nth-child(2) { animation-delay: 0.12s; }
.reveal:nth-child(3) { animation-delay: 0.2s; }
.reveal:nth-child(4) { animation-delay: 0.28s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }

  100% {
    background-position: 56px 56px, -56px -56px;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.36;
  }

  50% {
    opacity: 0.68;
  }
}

@keyframes broadcast-ring {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }

  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

@keyframes logo-glitch {
  0%, 86%, 93%, 100% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 2px 8px rgba(5, 12, 24, 0.45)) drop-shadow(0 0 0px rgba(0, 0, 0, 0));
    transform: translate(0, 0) skewX(0deg);
    opacity: 1;
  }
  87% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(-6px 0 14px rgba(0, 255, 80, 0.95)) drop-shadow(4px 0 8px rgba(57, 255, 20, 0.7));
    transform: translate(-6px, 2px) skewX(-8deg);
    opacity: 0.65;
  }
  88% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(6px 0 20px rgba(0, 255, 100, 1)) drop-shadow(-5px 0 12px rgba(0, 200, 60, 0.85));
    transform: translate(6px, -2px) skewX(6deg);
    opacity: 0.85;
  }
  89% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 0 0px rgba(0, 0, 0, 0)) drop-shadow(0 0 0px rgba(0, 0, 0, 0));
    transform: translate(0, 0) skewX(0deg);
    opacity: 0.28;
  }
  90% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(-4px 0 10px rgba(57, 255, 20, 0.9)) drop-shadow(3px 0 16px rgba(0, 255, 80, 0.8));
    transform: translate(-4px, 1px) skewX(-5deg);
    opacity: 0.9;
  }
  91% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(4px 0 18px rgba(0, 255, 70, 0.95)) drop-shadow(0 0 8px rgba(57, 255, 20, 0.6));
    transform: translate(4px, -1px) skewX(4deg);
    opacity: 0.75;
  }
  92% {
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6470%) hue-rotate(351deg) brightness(88%) contrast(118%) drop-shadow(0 0 6px rgba(0, 200, 60, 0.4)) drop-shadow(0 2px 8px rgba(5, 12, 24, 0.45));
    transform: translate(-2px, 0) skewX(-2deg);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    animation: none;
  }

  .project-shot {
    transition: none;
  }
}

@media (max-width: 920px) {
  body {
    padding-top: 260px;
  }

  .nav-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
  }

  .brand {
    width: 100%;
    margin: 0 auto;
  }

  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    width: 100%;
    overflow-x: hidden;
    white-space: normal;
  }

  .side-border {
    width: 38px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .before-after-pair {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .trust-signals {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

@media (max-width: 640px) {
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    width: 100%;
    overflow-x: hidden;
    white-space: normal;
    padding-bottom: 2px;
  }

  .brand {
    width: 100%;
    justify-content: center;
    margin: 0 auto;
    padding: 0.2rem 0.45rem;
  }

  .nav-links a {
    padding: 0.18rem 0.5rem;
    font-size: 0.72rem;
  }

  .nav-cta {
    display: none;
  }

  .before-after-pair {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: min(92vw, 680px);
    max-height: 96px;
  }

  .showcase-logo {
    max-width: 92vw;
    max-height: 44vh;
  }

  .side-border {
    display: none;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.25rem 0;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-banner {
    padding: 2.5rem 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

  .service-highlights {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
    grid-template-columns: unset;
  }

  .service-item {
    padding: 0.55rem 0.7rem;
    border-radius: 999px;
    flex: 0 0 auto;
    min-width: unset;
  }

  .service-item h3,
  .service-item p {
    display: none;
  }

  .service-icon {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .trust-signals {
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }

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

  body {
    padding-top: 182px;
    padding-bottom: 1rem;
  }
}
