:root {
  --red: #8b1218;
  --red-deep: #5c0b10;
  --red-hot: #a81820;
  --white: #ffffff;
  --off-white: #faf7f7;
  --line: #e8d9d9;
  --ink: #1a1212;
  --muted: #5c4a4a;
  --header-h: 4.75rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.brand,
.logo,
.phone-display,
.footer-brand {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
  padding: 0.55rem clamp(1.25rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--white) 92%, transparent);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.35rem;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: var(--red);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  line-height: 1.15;
}

.contact-prompt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.header-contact .contact-prompt {
  margin-bottom: 0.15rem;
}

.contact-actions .contact-prompt {
  margin-bottom: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 80%, transparent);
}

.header-phone,
.header-email {
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--red);
  white-space: nowrap;
}

.header-phone {
  font-size: 1.2rem;
}

.header-email {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.header-email:hover,
.header-email:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red-deep);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: calc(var(--header-h) + 0.75rem) clamp(0.75rem, 2vw, 1.5rem) clamp(2rem, 5vh, 3rem);
  text-align: center;
}

.hero-logo {
  margin: 0;
  width: min(72rem, 100%);
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.9s var(--ease) 0.15s forwards;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: -4.5rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.9s var(--ease) 0.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

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

.btn-primary {
  background: var(--white);
  color: var(--red-deep);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--off-white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: color-mix(in srgb, var(--white) 55%, transparent);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--white);
  background: color-mix(in srgb, var(--white) 10%, transparent);
}

.section-inner {
  width: min(70rem, 100%);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 5.5rem) clamp(1.25rem, 4vw, 3rem);
}

.services {
  background: var(--white);
}

.services h2,
.area h2,
.contact h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  text-transform: uppercase;
  color: var(--red);
}

.section-lede {
  margin: 0 0 2.25rem;
  max-width: 45rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list li {
  padding: 1.6rem 1.4rem 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.service-list li:nth-child(3n + 2),
.service-list li:nth-child(3n + 3) {
  padding-left: 1.4rem;
  border-left: 1px solid var(--line);
}

.service-list h3 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
  text-transform: uppercase;
  color: var(--red-deep);
}

.service-list p {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
}

.area {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--red) 8%, transparent), transparent 55%),
    var(--off-white);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.city-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.city-list li {
  padding-left: 0.9rem;
  position: relative;
}

.city-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--red);
}

.area-aside {
  padding: 1.75rem 0 0;
  border-top: 3px solid var(--red);
}

.aside-label {
  margin: 0 0 0.6rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.aside-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--ink);
}

.contact {
  background: var(--red-deep);
  color: var(--white);
}

.contact h2 {
  color: var(--white);
}

.contact .section-lede {
  color: color-mix(in srgb, var(--white) 82%, transparent);
  margin-bottom: 0;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.phone-display {
  display: block;
  font-size: clamp(2.4rem, 7vw, 3.75rem);
  text-decoration: none;
  color: var(--white);
  line-height: 1;
  transition: opacity 0.2s ease;
}

.phone-display:hover,
.phone-display:focus-visible {
  opacity: 0.85;
}

.email-display {
  display: block;
  margin-top: 0.55rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: color-mix(in srgb, var(--white) 90%, transparent);
  line-height: 1.1;
  transition: opacity 0.2s ease;
}

.email-display:hover,
.email-display:focus-visible {
  opacity: 0.85;
}

.contact-note {
  margin: 0.65rem 0 0;
  color: color-mix(in srgb, var(--white) 70%, transparent);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
  background: var(--red);
  color: color-mix(in srgb, var(--white) 85%, transparent);
  font-size: 0.95rem;
}

.footer-brand {
  margin: 0;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-list li:nth-child(3n + 2),
  .service-list li:nth-child(3n + 3) {
    padding-left: 0;
    border-left: none;
  }

  .service-list li:nth-child(even) {
    padding-left: 1.2rem;
    border-left: 1px solid var(--line);
  }

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

@media (max-width: 560px) {
  .site-header {
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .header-phone {
    font-size: 1.05rem;
  }

  .header-email {
    font-size: 0.8rem;
  }

  .header-contact .contact-prompt {
    display: none;
  }

  .hero-content {
    padding-top: calc(var(--header-h) + 2rem);
  }

  .service-list,
  .city-list {
    grid-template-columns: 1fr;
  }

  .service-list li:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: -2.5rem;
    width: min(20rem, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand,
  .hero-logo,
  .hero-actions,
  .reveal {
    animation: none;
    transition: none;
    opacity: 1;
    transform: none;
  }
}
