:root {
  --color-primary: #c31c30;
  --color-primary-deep: #8c101f;
  --color-ink: #10131a;
  --color-ink-soft: #2e3440;
  --color-muted: #68707f;
  --color-line: #d7dde7;
  --color-surface: #ffffff;
  --color-surface-alt: #f4f7fb;
  --color-surface-dark: #0e1117;
  --color-surface-dark-alt: #171c24;
  --container: 1180px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 22px 60px rgba(16, 19, 26, 0.08);
  --shadow-deep: 0 30px 90px rgba(6, 10, 16, 0.22);
  --font-heading: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Plus Jakarta Sans", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(195, 28, 48, 0.08), transparent 26%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 20%, #ffffff 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.thank-you-page {
  background:
    radial-gradient(circle at top left, rgba(195, 28, 48, 0.06), transparent 24%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 22%, #ffffff 100%);
}

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

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

a:hover {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
}

.eyebrow,
.card-kicker {
  margin: 0 0 0.85rem;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
.btn,
.header-phone,
.site-nav a {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  color: var(--color-ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 221, 231, 0.86);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 190px) 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img,
.footer-logo {
  height: auto;
}

.brand img {
  width: min(100%, 170px);
}

.site-nav ul,
.footer-links,
.panel-list,
.faq-list,
.location-links,
.related-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--color-ink);
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a:hover,
.text-link:hover,
.footer-links a:hover,
.location-link:hover,
.related-link:hover {
  color: var(--color-primary);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.1rem;
  border-radius: 999px;
  background: var(--color-ink);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #fff;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.25rem 0 3rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 17, 23, 0.98) 0%, rgba(23, 28, 36, 0.92) 58%, rgba(195, 28, 48, 0.87) 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.09), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 24%);
  z-index: -1;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  padding: 1.5rem 0 2rem;
}

.hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: #fff;
  font-size: clamp(2.3rem, 3.9vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero-intro {
  max-width: 54ch;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
  box-shadow: 0 18px 40px rgba(140, 16, 31, 0.22);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-stat {
  min-height: 96px;
  padding: 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stat strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stat span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 560px;
}

.hero-media > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-deep);
}

.hero-panel {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: min(360px, calc(100% - 2rem));
  padding: 1.2rem;
  border: 1px solid rgba(215, 221, 231, 0.84);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.hero-panel h2 {
  margin-bottom: 0.55rem;
  color: var(--color-ink);
  font-size: 1.15rem;
  line-height: 1.15;
}

.panel-list {
  display: grid;
  gap: 0.7rem;
}

.panel-list li,
.panel-list-dark li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-ink-soft);
}

.panel-list li::before,
.panel-list-dark li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.trust-strip {
  padding: 1rem 0 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 82px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.trust-chip span,
.bullet-panel span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--color-primary);
  flex: 0 0 auto;
}

.trust-chip strong {
  color: var(--color-ink);
  font-size: 0.96rem;
}

.section {
  padding: 5.5rem 0;
}

.section-soft {
  background: var(--color-surface-alt);
}

.section-dark {
  background: linear-gradient(180deg, var(--color-surface-dark) 0%, var(--color-surface-dark-alt) 100%);
}

.section-cta {
  padding-top: 0;
}

.section-heading {
  max-width: 68ch;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin-bottom: 0.9rem;
  color: var(--color-ink);
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-dark .section-heading h2,
.section-dark .section-heading p {
  color: #fff;
}

.section-dark .section-heading .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.section-grid-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: start;
}

.proof-grid,
.service-grid,
.gallery-grid {
  display: grid;
  gap: 1.35rem;
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.service-card,
.gallery-card,
.info-panel,
.side-panel,
.form-shell,
.bullet-panel,
.process-card,
.location-link,
.related-link,
.faq-list details,
.cta-banner {
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.proof-card,
.info-panel,
.side-panel,
.faq-list details,
.bullet-panel {
  border-radius: 20px;
  padding: 1.35rem;
}

.proof-card h3,
.service-card h3,
.gallery-card h3,
.info-panel h3,
.side-panel h3,
.faq-list summary,
.content-stack h3 {
  color: var(--color-ink);
}

.proof-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.28rem;
  line-height: 1.14;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.gallery-card {
  overflow: hidden;
  border-radius: 24px;
}

.service-card-media img,
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-body,
.gallery-card-body {
  padding: 1.35rem;
}

.service-card h3,
.gallery-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.28rem;
  line-height: 1.14;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 2rem;
  align-items: start;
}

.split-layout-tight {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.content-stack > :last-child {
  margin-bottom: 0;
}

.side-panel {
  position: sticky;
  top: 108px;
}

.process-list,
.location-links,
.related-links {
  display: grid;
  gap: 0.95rem;
}

.process-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
}

.process-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(195, 28, 48, 0.08);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.location-link,
.related-link {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 18px;
}

.location-link strong,
.related-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
}

.location-link span {
  display: block;
  margin-top: 0.2rem;
  color: var(--color-muted);
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-deep);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.gallery-card-body p,
.section-dark .gallery-card-body h3 {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-card-body h3 {
  color: #fff;
}

.bullet-panels {
  display: grid;
  gap: 1rem;
}

.bullet-panel {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border-radius: 18px;
}

.bullet-panel p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 0.95rem;
}

.faq-list details {
  border-radius: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
}

.faq-list details p {
  margin: 0.9rem 0 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.form-shell {
  border-radius: 24px;
  padding: 1.5rem;
}

.form-heading {
  margin-bottom: 1.25rem;
}

.form-heading h2 {
  margin-bottom: 0.65rem;
  color: var(--color-ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field-grid label {
  display: grid;
  gap: 0.48rem;
}

.field-grid label span {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 700;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: #fff;
  color: var(--color-ink);
  padding: 0.95rem 1rem;
}

.field-grid input,
.field-grid select {
  min-height: 58px;
}

.field-grid textarea {
  min-height: 180px;
  resize: vertical;
}

.field-grid input::placeholder,
.field-grid textarea::placeholder {
  color: #98a1af;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  outline: 2px solid rgba(195, 28, 48, 0.18);
  border-color: rgba(195, 28, 48, 0.5);
}

.field-span-2 {
  grid-column: span 2;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.form-actions p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(14, 17, 23, 0.96) 0%, rgba(28, 34, 43, 0.96) 58%, rgba(195, 28, 48, 0.92) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.06);
}

.cta-banner h2,
.cta-banner p {
  color: #fff;
}

.cta-banner .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  padding: 4.25rem 0 6.5rem;
  background: var(--color-surface-dark);
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h2 {
  margin-bottom: 0.9rem;
  font-size: 1.02rem;
}

.footer-logo {
  width: min(100%, 290px);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-callbar {
  display: none;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero-shell,
  .section-grid-proof,
  .split-layout,
  .split-layout-tight,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media > img {
    height: 560px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1.5rem;
  }

  .service-grid,
  .gallery-grid,
  .proof-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }

  .footer-bottom,
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 78px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero::before {
    inset: 0;
  }

  .hero-copy {
    padding-bottom: 1rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .hero-stats,
  .service-grid,
  .gallery-grid,
  .proof-grid,
  .trust-strip-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-media > img {
    height: 380px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .service-card-media img,
  .gallery-card img,
  .image-frame img {
    min-height: 0;
    height: 260px;
  }

  .field-span-2 {
    grid-column: auto;
  }

  .form-shell,
  .proof-card,
  .service-card,
  .gallery-card,
  .info-panel,
  .side-panel,
  .faq-list details,
  .bullet-panel,
  .process-card,
  .location-link,
  .related-link,
  .trust-chip {
    border-radius: 18px;
  }

  .mobile-callbar {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-deep) 100%);
    box-shadow: 0 22px 50px rgba(140, 16, 31, 0.28);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
  }

  .site-footer {
    padding-bottom: 8rem;
  }
}
