:root {
  --color-bg: #ffffff;
  --color-surface: #fbf7f4;
  --color-surface-strong: #f3ede9;
  --color-text: #181818;
  --color-muted: #606060;
  --color-brand: #c93124;
  --color-brand-dark: #a61f16;
  --color-accent: #111111;
  --color-border: #e7ddd6;
  --shadow-soft: 0 22px 44px rgba(16, 14, 13, 0.08);
  --container: min(1120px, calc(100vw - 32px));
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(201, 49, 36, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 42%, #fbf7f4 100%);
  line-height: 1.6;
}

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

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

iframe {
  display: block;
  width: 100%;
  border: 0;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--color-accent);
  color: #fff;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  background: #fff;
  border-bottom: 1px solid rgba(24, 24, 24, 0.08);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--color-muted);
}

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(201, 49, 36, 0.98);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 30px rgba(13, 9, 8, 0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
}

.brand img {
  width: clamp(160px, 22vw, 240px);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-brand);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  padding-bottom: 56px;
}

.hero-media {
  width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  background: #d9d9d9;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1110 / 500;
  object-fit: cover;
}

.hero-band {
  background: #111;
  color: #fff;
}

.hero-band-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--color-brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero h1,
.hero-band p {
  margin: 0;
}

.hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.1;
  max-width: 14ch;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 700;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.listing-links,
.about,
.services,
.contact {
  padding: 40px 0 88px;
}

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

.listing-card,
.service-card,
.contact-card,
.contact-form,
.map-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.listing-card {
  padding: 22px 24px;
}

.listing-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.listing-card span {
  color: var(--color-muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
}

.about-copy h2,
.services h2,
.contact-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 768 / 320;
  object-fit: cover;
}

.center {
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.service-card {
  padding: 28px 20px 24px;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 2px solid var(--color-brand);
  color: var(--color-brand);
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p,
.contact-card li,
.contact-form label,
.contact-form input,
.contact-form textarea {
  color: var(--color-muted);
}

.map-card {
  overflow: hidden;
}

.map-card iframe {
  min-height: 420px;
}

.map-card a {
  display: inline-flex;
  padding: 14px 18px 18px;
  color: var(--color-brand);
  font-weight: 700;
}

.contact-stack {
  display: grid;
  gap: 22px;
}

.contact-card,
.contact-form {
  padding: 28px 26px;
}

.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-card li + li {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 6px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--color-brand);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(24, 24, 24, 0.08);
}

.footer-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: flex-start;
    gap: 6px;
  }

  .topbar-inner > * {
    width: 100%;
  }

  .nav-inner {
    min-height: 88px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 0 16px 16px;
    background: var(--color-brand);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav ul {
    align-items: stretch;
    gap: 2px;
    padding: 12px 0 0;
  }

  .site-nav li,
  .site-nav a {
    width: 100%;
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.09);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-band-inner,
  .listing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .listing-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .listing-links,
  .about,
  .services,
  .contact {
    padding: 28px 0 64px;
  }

  .contact-card,
  .contact-form,
  .listing-card,
  .service-card {
    padding-inline: 18px;
  }

  .about-copy h2,
  .services h2,
  .contact-card h2 {
    font-size: 1.8rem;
  }

  .topbar-inner {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}
