/* Waco Wall Printing */
:root {
  --bg: #faf8f5;
  --bg-dark: #0f1419;
  --surface: #ffffff;
  --text: #1c1c1c;
  --text-muted: #4a5568;
  --accent: #1e3a5f;
  --accent-hover: #152a45;
  --accent-soft: rgba(30, 58, 95, 0.14);
  --border: #e8e4de;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15, 20, 25, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 20, 25, 0.12);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .card,
  .btn {
    transition: none !important;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav-toggle:focus-visible {
  outline-offset: 4px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent-hover);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
  font-size: 1.25rem;
}

h4,
.h4 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1e3a5f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

@media (min-width: 769px) {
  .header-inner .nav {
    margin-left: auto;
  }
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo:hover .logo-img {
  opacity: 0.9;
}

.logo-img {
  height: 92px;
  width: auto;
  max-width: min(350px, 50vw);
  object-fit: contain;
  display: block;
}

.footer-brand {
  margin-bottom: 0.25rem;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
  padding: 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 84px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 0.28rem 0.5rem 0.36rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 0.95;
  color: #ffffff;
  min-width: 44px;
  min-height: 44px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem 0.8rem;
  align-items: center;
  white-space: nowrap;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.86rem;
  transition: opacity 0.2s;
}

.nav-list a:hover {
  opacity: 0.8;
}

.nav-list .btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: #000080;
  color: #ffffff !important;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-list .btn:hover {
  background: #4169E1;
  transform: translateY(-1px);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: #cbd5e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary {
  background: #ffffff;
  color: #0f1419;
}

.btn-primary:hover {
  background: #e2e8f0;
  color: #0f1419;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark) url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1920&q=80")
    center/cover no-repeat;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 20, 25, 0.88) 0%, rgba(15, 20, 25, 0.55) 50%, rgba(30, 58, 95, 0.42) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

.hero .h4 {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero .tagline {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.hero .phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 1.25rem 0;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero .btn-primary {
  background: #fff;
  color: var(--bg-dark);
}

.hero .btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.section {
  padding: 4rem 1.25rem;
}

.section-alt {
  background: var(--surface);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  margin-bottom: 0.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}

.section-alt .card {
  background: var(--bg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.grid-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.feature-block h4 {
  margin-bottom: 0.5rem;
}

.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, #e8ecf3 100%);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

blockquote {
  margin: 0;
  padding: 2rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
  font-style: italic;
}

blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

blockquote .role {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.cta-band {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.cta-band h2 {
  margin-bottom: 1rem;
}

.site-footer {
  background: #0a0d10;
  color: #a8b0bc;
  padding: 3rem 1.25rem 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #cbd5e1;
}

.site-footer a:hover {
  color: #fff;
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 0.35rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2d3748;
  text-align: center;
  font-size: 0.85rem;
}

.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  color: #fff;
  padding: 3.5rem 1.25rem;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 65ch;
  opacity: 0.92;
  margin: 0;
}

.prose {
  max-width: 720px;
}

.prose-wide {
  max-width: 840px;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.service-list li {
  margin-bottom: 0.5rem;
}

.pricing-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.pricing-box h3 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.surface-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem 1.5rem;
}

.surface-grid li {
  padding: 0.65rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.source-note a {
  font-weight: 600;
}

.mockup-cta {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.process-steps {
  counter-reset: step;
}

.process-step {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.phone-big {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 768px) {
  .logo-img {
    height: 84px;
    max-width: min(280px, 46vw);
  }

  .nav-toggle {
    margin-top: -4px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 48px;
    background: var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-list a {
    color: #ffffff;
    padding: 0.5rem 0;
  }

  .nav-list .btn {
    margin-top: 0.5rem;
    text-align: center;
    background: #000080;
    color: #ffffff;
    display: block;
  }

  .nav-list .btn:hover {
    background: #4169E1;
    color: #ffffff;
    transform: translateY(-1px);
  }
}

@media (min-width: 769px) {
  .header-inner .btn {
    margin-left: 0.35rem;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-img {
    height: 92px;
    max-width: 250px;
  }
}

.trust-strip {
  background: var(--bg-dark);
  color: #e2e8f0;
  padding: 1.25rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
}

.trust-strip strong {
  color: #fff;
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.trust-strip a {
  color: #93c5fd;
}

.trust-strip a:hover {
  color: #fff;
}

.gallery-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(15, 20, 25, 0.85));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.4rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 30px rgba(15, 20, 25, 0.08);
}

.mobile-cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.mobile-cta .btn {
  flex: 1;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.mobile-cta-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: block;
  }

  body {
    padding-bottom: 4.5rem;
  }
}
