@font-face {
  font-family: "Aloevera Display";
  src: url("/assets/fonts/AloeveraDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aloevera Display";
  src: url("/assets/fonts/AloeveraDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #101827;
  --muted: #526071;
  --panel: #ffffff;
  --soft: #eef3f8;
  --deep: #07111f;
  --line: rgba(16, 24, 39, 0.12);
  --red: #e11d48;
  --red-dark: #9f1239;
  --green: #138a52;
  --blue: #185d8a;
  --shadow: 0 22px 50px rgba(16, 24, 39, 0.14);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Aloevera Display", "Arial Narrow", var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  transform: translateY(-160%);
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(140px, 16vw, 190px);
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  font-size: 0.88rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
  color: var(--muted);
}

nav a:hover {
  color: var(--red);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-call {
  background: var(--ink);
  color: #fff;
}

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

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 24px rgba(225, 29, 72, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

i[data-lucide] {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.4;
}

.hero {
  position: relative;
  min-height: calc(100svh - 70px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.58) 48%, rgba(7, 17, 31, 0.16)),
    linear-gradient(0deg, rgba(7, 17, 31, 0.88), transparent 45%);
}

.hero-scan {
  position: absolute;
  inset-inline: -20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  opacity: 0.6;
  animation: scanLine 5s ease-in-out infinite;
}

.hero-scan-a {
  top: 24%;
}

.hero-scan-b {
  top: 68%;
  animation-delay: 1.7s;
}

.hero-content {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vh, 8rem) 0 3rem;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.1rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 690px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
}

.hero-actions,
.form-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 760px;
  margin: 2rem 0 0;
}

.hero-facts div {
  min-height: 86px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  font-weight: 950;
}

.attractor-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.attractor-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 74px;
  padding: 1rem;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

section:not(.hero):not(.attractor-strip) {
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2.5rem);
}

.section-head {
  width: min(1040px, 100%);
  margin: 0 auto 1.5rem;
}

.section-head p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-layout {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.quote-form,
.text-card,
.service-grid article,
.location-card,
.hours-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quote-form,
.text-card {
  padding: clamp(1rem, 3vw, 1.4rem);
}

label,
label span {
  display: grid;
  gap: 0.4rem;
}

label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
  color: var(--ink);
  font: inherit;
  padding: 0.85rem 0.9rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(225, 29, 72, 0.18);
  border-color: var(--red);
}

textarea {
  resize: vertical;
}

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

.microcopy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.text-card {
  position: sticky;
  top: 88px;
}

.text-card-head {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.text-card-head > i {
  width: 42px;
  height: 42px;
  padding: 0.55rem;
  border-radius: var(--radius);
  background: rgba(225, 29, 72, 0.1);
  color: var(--red);
}

.text-card-head p,
.empty-state {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.template-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.template-item {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.template-item p {
  margin: 0;
  color: var(--ink);
}

.template-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.template-actions .btn {
  min-height: 38px;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
}

.services-section {
  background: #fff;
}

.service-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-grid article {
  box-shadow: none;
  padding: 1.2rem;
}

.service-grid article > i {
  width: 40px;
  height: 40px;
  padding: 0.48rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.service-grid p,
.proof-copy p,
.location-body p,
.location-body address {
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  background: var(--deep);
  color: #fff;
}

.photo-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 0.7rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.photo-rail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.proof-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.location-card {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.location-map {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(16, 24, 39, 0.92), rgba(24, 93, 138, 0.76)),
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255, 255, 255, 0.08) 32px 34px);
}

.map-pin {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 14px rgba(225, 29, 72, 0.18);
  animation: pinPulse 2.3s ease-in-out infinite;
}

.map-pin i {
  width: 42px;
  height: 42px;
}

.location-map p {
  margin: 0;
  font-weight: 950;
}

.location-body {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.location-body address {
  margin-top: 0.8rem;
  font-style: normal;
  font-weight: 900;
}

.hours-grid {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hours-grid div {
  box-shadow: none;
  padding: 1rem;
}

.hours-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hours-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.05rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 3vw, 2.5rem);
  background: var(--deep);
  color: #fff;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 900;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-22%) rotate(-2deg); opacity: 0; }
  35%, 70% { opacity: 0.55; }
  55% { transform: translateX(22%) rotate(-2deg); }
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(225, 29, 72, 0.18); }
  50% { box-shadow: 0 0 0 24px rgba(225, 29, 72, 0.04); }
}

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.42));
  }

  .hero-facts,
  .attractor-strip,
  .quote-layout,
  .service-grid,
  .proof-section,
  .location-card,
  .hours-grid {
    grid-template-columns: 1fr;
  }

  .text-card {
    position: static;
  }

  .photo-rail {
    grid-template-columns: repeat(4, 72vw);
  }
}

@media (max-width: 560px) {
  .header-call span {
    display: none;
  }

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

  .hero-content {
    width: min(100% - 1rem, 1120px);
  }

  .hero-actions .btn,
  .location-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .site-footer,
  .footer-links {
    display: grid;
  }
}
