/* =============================================
   RODRIGUEZ CONTRACT SERVICES
   main.css — Industrial dark theme
   ============================================= */

/* ---------- Custom Properties ---------- */
:root {
  --red:        #CC0000;
  --red-dark:   #aa0000;
  --black:      #111111;
  --near-black: #1A1A1A;
  --gray:       #B0B0B0;
  --text:       #F5F5F5;
  --text-muted: #888888;
  --border:     rgba(255, 255, 255, 0.07);
  --border-red: rgba(204, 0, 0, 0.25);

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --container: 1200px;
  --nav-h:     80px;

  --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  font-weight: 700;
}

p {
  max-width: 70ch;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 48px;
  }
}

/* ---------- Section header ---------- */
.section-header {
  margin-bottom: 52px;
}

.section-header h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  color: var(--text);
}

.section-sub {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px;
  height: 52px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    transform 0.18s var(--ease-out),
    opacity 0.18s ease;
  white-space: nowrap;
  min-width: 44px;
}

.btn-primary {
  background: var(--red);
  color: var(--text);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(245, 245, 245, 0.2);
}

.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: scale(0.97);
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(17, 17, 17, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease-out);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0 48px;
  }
}

.nav-logo img {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav-links a:hover {
  color: var(--text);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  background: var(--red);
  padding: 0 20px;
  height: 42px;
  border-radius: 3px;
  margin-left: 16px;
  transition: background 0.2s var(--ease-out), transform 0.18s var(--ease-out);
  flex-shrink: 0;
  min-height: 44px;
}

.nav-phone:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .nav-phone {
    display: flex;
  }
}

@media (min-width: 768px) {
  .nav-phone {
    margin-left: 0;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.32s var(--ease-out), opacity 0.22s ease;
  transform-origin: center;
}

.hamburger.is-open .hamburger-line:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--nav-h);
  z-index: 99;
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 32px 24px;
  width: 100%;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 24px;
  transition: color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
}

.mobile-nav-link:hover {
  color: var(--red);
}

.mobile-menu.is-open .mobile-nav-link {
  animation: navReveal 0.38s var(--ease-out) forwards;
}

.mobile-menu.is-open .mobile-nav-link:nth-child(1) { animation-delay: 0.04s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(2) { animation-delay: 0.09s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(3) { animation-delay: 0.14s; }
.mobile-menu.is-open .mobile-nav-link:nth-child(4) { animation-delay: 0.19s; }

.mobile-nav-cta {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--red);
  padding: 0 36px;
  height: 52px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: background 0.2s ease;
}

.mobile-nav-cta:hover {
  background: var(--red-dark);
}

.mobile-menu.is-open .mobile-nav-cta {
  animation: navReveal 0.38s var(--ease-out) 0.24s forwards;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: calc(var(--nav-h) + 72px) 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(204, 0, 0, 0.03) 0%, transparent 55%),
              var(--black);
}

@media (min-width: 768px) {
  .hero {
    padding: calc(var(--nav-h) + 80px) 48px 100px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  flex: 1 0 100%;
}

.hero-eyebrow {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(54px, 9.5vw, 112px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(44px);
  will-change: transform, opacity;
}

.red-text {
  color: var(--red);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

/* Ambient glow */
.hero-glow {
  position: absolute;
  right: -80px;
  top: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-glow {
    right: 5%;
    width: 700px;
    height: 700px;
  }
}

/* Thin vertical red accent line */
.hero-rule {
  position: absolute;
  top: 10%;
  right: 0;
  width: 2px;
  height: 80%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--red) 25%,
    var(--red) 75%,
    transparent 100%
  );
  opacity: 0.35;
  pointer-events: none;
}

/* =============================================
   HERO STATS
   ============================================= */

.hero-stat {
  padding: 22px 0;
  opacity: 0;
  transform: translateY(16px);
  will-change: transform, opacity;
}

.hero-stat-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  max-width: none;
}

.hero-stat-suffix {
  color: var(--red);
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  max-width: none;
}

.hero-stats {
  flex: 1 0 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

/* Tablet: horizontal row */
@media (min-width: 480px) and (max-width: 899px) {
  .hero-stats {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-stat-rule {
    display: none;
  }

  .hero-stat {
    flex: 1;
    padding: 0 24px;
  }

  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child  { padding-right: 0; }

  .hero-stat:not(:last-child) {
    border-right: 1px solid var(--border);
  }
}

/* Desktop: hero-content left, stats absolute at ~65-70% across */
@media (min-width: 900px) {
  .hero-content {
    flex: 1;
    max-width: min(46%, 580px);
  }

  .hero-stats {
    position: absolute;
    left: 74%;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    flex: none;
    flex-direction: column;
    align-self: unset;
  }

  .hero-stat {
    padding: 22px 0;
    border-right: none;
  }

  .hero-stat:not(:last-child) {
    border-right: none;
  }

  .hero-stat-rule {
    display: block;
  }
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0 96px;
  border-top: 1px solid var(--border);
}

/* Emergency featured card */
.service-featured {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  background: var(--near-black);
  border: 1px solid var(--border-red);
  border-radius: 6px;
  padding: 36px 40px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s var(--ease-out);
}

.service-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(204, 0, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.service-featured:hover {
  border-color: rgba(204, 0, 0, 0.5);
}

@media (max-width: 560px) {
  .service-featured {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
}

.service-featured-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 6px;
  color: var(--red);
}

.service-featured-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.badge-emergency {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.service-featured-content h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 10px;
  color: var(--text);
}

.service-featured-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 18px;
  max-width: 56ch;
}

.service-call-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--red);
  transition: opacity 0.2s ease, gap 0.2s ease;
}

.service-call-link:hover {
  opacity: 0.75;
  gap: 10px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition:
    border-color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.service-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 245, 245, 0.04);
  border-radius: 5px;
  color: var(--red);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 0.04em;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us {
  padding: 100px 0;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-stat {
  background: var(--near-black);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 400px) {
  .why-stat {
    padding: 28px 20px;
  }
}

.why-stat-number {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.01em;
}

.why-stat-number .plus {
  font-size: 0.65em;
  vertical-align: super;
}

.why-stat-icon {
  color: var(--red);
  line-height: 1;
}

.why-stat-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
}

.why-stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: none;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.25s var(--ease-out);
}

.testimonial-card:hover {
  border-color: rgba(245, 245, 245, 0.14);
}

.stars {
  color: var(--red);
  font-size: 19px;
  letter-spacing: 3px;
  line-height: 1;
}

blockquote p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.68;
  font-style: italic;
  max-width: none;
}

cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
  margin-top: auto;
}

.cite-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.cite-location {
  font-size: 12px;
  color: var(--text-muted);
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
  }
}

.contact-info h2 {
  font-size: clamp(34px, 5vw, 52px);
  margin-bottom: 14px;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 42ch;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text);
}

.contact-detail:first-child {
  border-top: 1px solid var(--border);
}

.contact-detail svg {
  color: var(--red);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: var(--red);
}

/* Form */
.contact-form-wrap {
  background: var(--near-black);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}

@media (max-width: 480px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

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

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.req {
  color: var(--red);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
  cursor: pointer;
}

select option {
  background: #1a1a1a;
  color: #f5f5f5;
}

textarea {
  min-height: 116px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.14);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

/* Submit button */
.btn-submit {
  width: 100%;
  height: 56px;
  font-size: 15px;
  letter-spacing: 0.14em;
  position: relative;
  overflow: hidden;
  margin-top: 4px;
}

.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  position: absolute;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-submit.is-loading .btn-text {
  opacity: 0;
}

.btn-submit.is-loading .btn-spinner {
  display: inline-block;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form feedback messages */
.form-success,
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 4px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.form-success {
  background: rgba(0, 160, 60, 0.08);
  border: 1px solid rgba(0, 160, 60, 0.22);
  color: #6dbb8e;
}

.form-success svg {
  color: #6dbb8e;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-error {
  background: rgba(204, 0, 0, 0.08);
  border: 1px solid rgba(204, 0, 0, 0.22);
  color: #f87171;
}

.form-error svg {
  color: #f87171;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-success a,
.form-error a {
  color: inherit;
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-brand {
  flex: 1;
  max-width: 400px;
}

.footer-logo-link img {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--red);
  transition: opacity 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-area {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: none;
}

.footer-credit {
  color: var(--red);
}

/* =============================================
   SCROLL REVEAL — initial hidden state
   GSAP will animate these to visible
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  will-change: transform, opacity;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

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

  html {
    scroll-behavior: auto;
  }

  .grain {
    display: none;
  }

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

  .hero-title .word {
    opacity: 1;
    transform: none;
  }

  .hero-sub,
  .hero-ctas {
    opacity: 1;
    transform: none;
  }

  .hero-stat {
    opacity: 1;
    transform: none;
  }
}
