/* Paul Mongaya — WordPress Portfolio Mockup */
:root {
  --red: #e31837;
  --red-dark: #b91c1c;
  --red-deep: #7f1d1d;
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #ffffff;
  --cta: #ff6b00;
  --cta-hover: #ff8533;
  --gray: rgba(255, 255, 255, 0.55);
  --gray-dim: rgba(255, 255, 255, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --font-display: Impact, "Arial Black", sans-serif;
  --max: 1200px;
  --nav-h: 72px;
  --safe-top: env(safe-area-inset-top, 0px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html.nav-open,
html.nav-open body {
  overflow: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--gray-dim); }
.section-desc {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--gray);
  max-width: 36rem;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #fca5a5 45%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta {
  color: var(--black);
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 50%, #ffaa00 100%);
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.4);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 0, 0.5);
}
.btn-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: rgba(227, 24, 55, 0.5); background: rgba(255,255,255,0.04); }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* ─── Navigation ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  --nav-h: 64px;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(227, 24, 55, 0.5) 30%,
    rgba(227, 24, 55, 0.5) 70%,
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.site-header.scrolled .nav-accent {
  opacity: 1;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  justify-self: start;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.nav-primary {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.nav-links a {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--gray-dim);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(227, 24, 55, 0.2);
  box-shadow: inset 0 0 0 1px rgba(227, 24, 55, 0.25);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-self: end;
}

.nav-cta {
  border-radius: 999px !important;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-toggle:hover {
  border-color: rgba(227, 24, 55, 0.35);
  background: rgba(227, 24, 55, 0.08);
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Mobile backdrop + drawer (hidden on desktop) */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.nav-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  display: none;
}

.nav-mobile-cta {
  display: none;
}

@media (min-width: 901px) {
  .nav-backdrop {
    display: none;
  }
}

.site-header:not(.scrolled) {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--nav-h) + var(--safe-top));
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 0;
}
.hero-glow {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 700px);
  height: min(90vw, 700px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,24,55,0.45) 0%, rgba(185,28,28,0.15) 45%, transparent 70%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 3rem 0 4rem;
}
.hero-copy { max-width: 34rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(227,24,55,0.3);
  background: rgba(227,24,55,0.1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cta);
  box-shadow: 0 0 8px var(--cta);
}
.hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-lead {
  font-size: 1.125rem;
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
.hero-stat span { font-size: 0.75rem; color: var(--gray-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  min-height: 420px;
}
.hero-visual img {
  width: min(100%, 420px);
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  transform: scale(1.1);
  transform-origin: bottom center;
}

/* Logo bar */
.logo-bar {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: var(--black-soft);
  overflow: hidden;
}
.logo-bar p {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 1.25rem;
}
.logo-track {
  display: flex;
  gap: 3rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.logo-track span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: rgba(227,24,55,0.35);
  box-shadow: 0 0 40px rgba(227,24,55,0.1);
}
.card-icon {
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.625rem;
  background: rgba(227,24,55,0.15);
  color: #fca5a5;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }

/* Project cards */
.project-card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: inherit;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: rgba(227, 24, 55, 0.45);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(227, 24, 55, 0.18);
}
.project-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--black);
}
.project-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}
.project-card:hover .project-thumb::after {
  transform: translateX(120%);
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .project-thumb img {
  transform: scale(1.08);
}
.project-body { padding: 1.25rem; }
.project-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.4s ease;
}
.project-card:hover .project-tag {
  color: #fca5a5;
}
.project-body h3 {
  margin: 0.35rem 0 0.25rem;
  font-size: 1.125rem;
  transition: color 0.4s ease;
}
.project-card:hover .project-body h3 {
  color: #fff;
}
.project-site {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(227, 24, 55, 0.85);
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
}
.project-card:hover .project-site {
  color: #f87171;
}
.project-body > p:not(.project-site) {
  font-size: 0.8125rem;
  color: var(--gray);
  line-height: 1.6;
}
.project-visit {
  display: inline-block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--red);
  transition:
    color 0.4s ease,
    border-color 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .project-visit {
  color: #fca5a5;
  border-color: rgba(227, 24, 55, 0.25);
  transform: translateX(4px);
}
.project-url-full {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: var(--gray-dim);
  word-break: break-all;
}

/* Testimonial */
.testimonial {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.testimonial .stars { color: var(--red); margin-bottom: 1rem; font-size: 0.875rem; }
.testimonial blockquote {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial cite { font-style: normal; font-size: 0.875rem; }
.testimonial cite span { display: block; font-size: 0.75rem; color: var(--gray-dim); }

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127,29,29,0.4) 0%, var(--black) 50%, var(--black) 100%);
  z-index: 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1rem; }
.cta-band p { color: var(--gray); max-width: 32rem; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* Services page */
.service-hero {
  padding: calc(var(--nav-h) + var(--safe-top) + 4rem) 0 3rem;
  background: linear-gradient(180deg, rgba(127,29,29,0.25) 0%, var(--black) 100%);
}
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) .service-copy { order: 2; }
.service-block:nth-child(even) .service-visual { order: 1; }
.service-visual {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(227,24,55,0.2), var(--black-soft));
  border: 1px solid var(--border);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}
.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 45%);
  pointer-events: none;
}
.service-block:hover .service-visual {
  transform: translateY(-4px);
  border-color: rgba(227, 24, 55, 0.35);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(227, 24, 55, 0.12);
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-block:hover .service-visual img {
  transform: scale(1.04);
}
.service-copy h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.service-copy p { color: var(--gray); margin-bottom: 1rem; line-height: 1.7; }
.service-list { margin: 1.25rem 0; }
.service-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  text-align: center;
}
.price-card.featured {
  border-color: rgba(227,24,55,0.5);
  background: linear-gradient(180deg, rgba(127,29,29,0.2), rgba(255,255,255,0.02));
  position: relative;
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  border-radius: 999px;
  background: var(--red);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.price-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin: 1rem 0;
}
.price-card .price span { font-size: 1rem; color: var(--gray-dim); }
.price-card ul { text-align: left; margin: 1.5rem 0; }
.price-card li {
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9375rem;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(227,24,55,0.5);
  box-shadow: 0 0 0 3px rgba(227,24,55,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  min-height: 1.25rem;
}
.form-status--success { color: #86efac; }
.form-status--error { color: #fca5a5; }

.thank-you {
  min-height: calc(100vh - var(--nav-h) - var(--safe-top));
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--safe-top) + 4rem) 0 4rem;
  background: linear-gradient(180deg, rgba(127,29,29,0.2) 0%, var(--black) 55%);
}
.thank-you-card {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.thank-you-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(227, 24, 55, 0.15);
  color: #fca5a5;
}
.thank-you-icon svg {
  width: 2rem;
  height: 2rem;
}
.thank-you-steps {
  margin: 2rem auto;
  max-width: 24rem;
  text-align: left;
}
.thank-you-steps li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}
.thank-you-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.faq-intro .section-desc {
  margin-top: 0.75rem;
}
.faq-guarantee {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(227, 24, 55, 0.35);
  background: rgba(227, 24, 55, 0.1);
}
.faq-guarantee-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.faq-guarantee p {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}
.faq-guarantee strong {
  color: var(--white);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item[open] {
  border-color: rgba(227, 24, 55, 0.35);
  box-shadow: 0 0 32px rgba(227, 24, 55, 0.08);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--white);
  position: relative;
  padding-right: 2.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--red);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item p a {
  color: #fca5a5;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item p a:hover {
  color: var(--white);
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-grid p { font-size: 0.875rem; color: var(--gray-dim); margin-top: 0.5rem; max-width: 20rem; }
.footer-grid h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-dim); margin-bottom: 1rem; }
.footer-grid a:not(.social-link) { display: block; font-size: 0.875rem; color: var(--gray); padding: 0.25rem 0; }
.footer-grid a:not(.social-link):hover { color: var(--red); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  line-height: 0;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--gray);
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}
.social-link svg {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  pointer-events: none;
}
.social-link[aria-label="Facebook"] svg {
  width: 0.95rem;
  height: 0.95rem;
}
.social-link[aria-label="Instagram"] svg {
  width: 1.05rem;
  height: 1.05rem;
}
.social-link[aria-label="LinkedIn"] svg {
  width: 0.95rem;
  height: 0.95rem;
}
.social-link[aria-label="Twitter"] svg {
  width: 0.9rem;
  height: 0.9rem;
}
.social-link:hover {
  color: #fff;
  border-color: rgba(227, 24, 55, 0.45);
  background: rgba(227, 24, 55, 0.12);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-dim);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .container { width: min(100% - 2rem, var(--max)); }
  .section { padding: 3.25rem 0; }

  .section-title { font-size: clamp(1.75rem, 6.5vw, 2.5rem); }
  .section-desc { font-size: 1rem; max-width: none; }

  .btn { padding: 0.9375rem 1.5rem; }
  .btn-sm { padding: 0.75rem 1.125rem; }

  /* Page heroes (about, portfolio, services, contact) */
  .service-hero {
    padding: calc(var(--nav-h) + var(--safe-top) + 2rem) 0 2rem;
  }
  .service-hero .section-desc {
    font-size: 1rem !important;
  }

  /* Home hero */
  .hero {
    min-height: auto;
  }
  .hero-inner {
    gap: 1.25rem;
    padding: 1.25rem 0 2.5rem;
    text-align: center;
  }
  .hero-copy { max-width: none; }
  .hero-actions,
  .hero-stats { justify-content: center; }
  .hero-visual {
    min-height: 220px;
    order: -1;
  }
  .hero-visual img {
    max-height: 46vh;
    transform: none;
    width: min(100%, 320px);
  }
  .hero h1 {
    font-size: clamp(1.875rem, 7.5vw, 2.5rem);
    line-height: 1.12;
  }
  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow {
    font-size: 0.6875rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.75rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
  }
  .hero-stat {
    flex: 1 1 calc(33.333% - 0.75rem);
    min-width: 5.5rem;
    text-align: center;
  }
  .hero-stat strong { font-size: 1.5rem; }

  /* Logo marquee */
  .logo-bar {
    padding: 1.75rem 0;
  }
  .logo-track {
    gap: 2rem;
  }

  /* Grids & cards */
  .hero-inner,
  .grid-3,
  .grid-2,
  .pricing-grid,
  .contact-grid,
  .service-block,
  .footer-grid,
  .faq-layout { grid-template-columns: 1fr; }

  .grid-3,
  .grid-2 {
    gap: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .section-header-row {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    margin-bottom: 2rem !important;
  }
  .section-header-row .btn {
    width: 100%;
    max-width: 16rem;
  }

  /* About */
  .about-grid .about-portrait {
    order: -1;
  }
  .about-portrait img {
    max-width: min(100%, 280px) !important;
    margin-inline: auto;
  }
  .about-copy h2 {
    font-size: 1.625rem !important;
  }
  .stats-row {
    gap: 1.5rem !important;
  }
  .stats-row > div {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
  }

  /* Service blocks */
  .service-block:nth-child(even) .service-copy,
  .service-block:nth-child(even) .service-visual { order: unset; }
  .service-block {
    gap: 1.75rem;
    padding: 2.5rem 0;
  }
  .service-copy h2 {
    font-size: 1.5rem;
  }
  .service-copy .btn {
    width: 100%;
    max-width: 18rem;
  }

  /* Projects */
  .project-thumb { height: 180px; }
  .project-card:hover {
    transform: none;
  }

  /* Testimonials */
  .testimonial {
    padding: 1.5rem;
  }

  .faq-layout {
    gap: 2rem;
  }
  .faq-intro {
    text-align: center;
  }
  .faq-guarantee {
    text-align: left;
  }
  .faq-item summary {
    font-size: 0.9375rem;
    padding: 1rem 2.5rem 1rem 1rem;
  }

  /* CTA bands */
  .cta-band {
    padding: 3.25rem 0;
  }
  .cta-band h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
  .cta-band p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .cta-band .btn {
    width: 100%;
    max-width: 20rem;
  }

  /* Contact */
  .contact-grid {
    gap: 2rem;
  }
  .contact-grid .contact-form-card {
    order: -1;
  }
  .contact-form-card {
    padding: 1.25rem !important;
  }
  .contact-sidebar-card {
    margin-top: 0 !important;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 0.9375rem 1rem;
  }
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  /* Thank you */
  .thank-you {
    min-height: auto;
    padding: calc(var(--nav-h) + var(--safe-top) + 2rem) 0 2.5rem;
  }
  .thank-you-card {
    padding: 2rem 1.25rem;
  }
  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .thank-you-actions .btn {
    width: 100%;
  }

  /* Footer */
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-grid {
    gap: 1.75rem;
    text-align: center;
  }
  .footer-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-grid .logo {
    justify-content: center;
    margin-inline: auto;
  }
  .footer-grid > div:first-child p {
    max-width: none;
    margin-inline: auto;
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding-top: 1.5rem;
  }
  .footer-bottom .btn {
    width: 100%;
    max-width: 18rem;
  }

  /* Flex top bar: logo + hamburger only (nav-primary is a separate drawer) */
  .nav-open .site-header {
    z-index: 260;
  }

  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .nav-primary {
    display: none;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(100%, 20rem);
    z-index: 250;
    padding: calc(var(--nav-h) + var(--safe-top) + 1.5rem) 1.5rem calc(1.5rem + env(safe-area-inset-bottom, 0px)) 1.5rem;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
    overflow-y: auto;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-open .nav-drawer {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-drawer .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.375rem;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
  }

  .nav-drawer .nav-links a {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    border-radius: 0.625rem;
    border: 1px solid transparent;
  }

  .nav-drawer .nav-links a:not(.active) {
    color: rgba(255, 255, 255, 0.72);
  }

  .nav-drawer .nav-links a.active {
    color: var(--white);
    border-color: rgba(227, 24, 55, 0.3);
    background: rgba(227, 24, 55, 0.12);
  }

  .nav-mobile-cta {
    display: flex;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
  }

  .nav-cta-desktop { display: none; }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-open .nav-toggle {
    border-color: rgba(227, 24, 55, 0.55);
    background: rgba(227, 24, 55, 0.18);
  }
}

@media (min-width: 901px) {
  .nav-backdrop,
  .nav-drawer { display: none; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 1.5rem, var(--max)); }
  .section { padding: 2.75rem 0; }

  .hero-stat {
    flex: 1 1 100%;
  }
  .hero-stat strong { font-size: 1.375rem; }

  .logo { font-size: 1.25rem; }
  .logo-mark { width: 2rem; height: 2rem; }

  .nav-drawer {
    width: 100%;
    padding: calc(var(--nav-h) + var(--safe-top) + 1rem) 1rem calc(1rem + env(safe-area-inset-bottom, 0px)) 1rem;
  }

  .card-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }

  .service-block {
    padding: 2rem 0;
  }

  .cta-band {
    padding: 2.75rem 0;
  }

  .thank-you-card {
    padding: 1.75rem 1rem;
  }
}

@media (hover: none) {
  .project-card:hover,
  .service-block:hover .service-visual,
  .card:hover,
  .social-link:hover {
    transform: none;
  }
}
