:root {
  --brand: #a4221a;
  --brand-dark: #7e1810;
  --brand-bright: #c24a3c;
  --ink: #141312;
  --paper: #fbf8f5;
  --muted: #6e6660;
  --line: #e7e1db;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(20, 19, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--brand-bright);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 19, 18, 0.88);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.nav-wrap,
.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  min-width: 0;
}

.brand-link img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: var(--brand);
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 10px 30px rgba(164, 34, 26, 0.28);
}

.button:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button.light {
  color: var(--brand-dark);
  background: var(--white);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(20, 19, 18, 0.9), rgba(126, 24, 16, 0.58), rgba(20, 19, 18, 0.04)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(0deg, rgba(251, 248, 245, 0.92), rgba(251, 248, 245, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-bright);
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
.display {
  font-family: Archivo, Inter, Arial, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  text-transform: uppercase;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, calc(100% - 32px));
  margin: -54px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.stat {
  padding: 22px;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--brand-dark);
  font-family: Archivo, Inter, Arial, sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 86px 0;
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section.brand {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(126, 24, 16, 0.96), rgba(164, 34, 26, 0.88)),
    var(--band-image, none);
  background-size: cover;
  background-position: center;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p,
.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.dark .section-head p,
.brand .section-head p,
.brand .lead,
.dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dark .card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.card-media {
  aspect-ratio: 16 / 10;
  background: #272321;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.card-body p,
.check-list,
.muted {
  color: var(--muted);
}

.dark .card-body p,
.dark .check-list,
.dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.mini-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--brand);
  font-weight: 900;
}

.dark .mini-link {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.process {
  counter-reset: step;
}

.process .card-body {
  min-height: 190px;
}

.step {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 8px;
  background: #26211f;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(20, 19, 18, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-panel {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
}

.contact-panel a {
  color: var(--white);
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  background: var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 46px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #0f0e0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 26px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-logo img {
  width: 46px;
  height: 46px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--white);
  background: #1fa855;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(31, 168, 85, 0.35);
}

.page-hero {
  padding: 92px 0 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 19, 18, 0.94), rgba(126, 24, 16, 0.78)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(164, 34, 26, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  max-width: 820px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 17px;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: rgba(20, 19, 18, 0.98);
  }

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

  .site-nav a {
    padding: 11px 0;
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .stats-strip,
  .grid.three,
  .grid.four,
  .grid.two,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .hero-content,
  .stats-strip {
    width: min(100% - 24px, 1160px);
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding: 58px 0 76px;
  }

  .hero-copy {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.35rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 64px 0;
  }

  .stats-strip {
    margin-top: -42px;
  }

  .stat {
    padding: 18px;
  }

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

  .gallery-item,
  .gallery-item.large {
    grid-column: auto;
    min-height: 240px;
  }

  .float-whatsapp {
    left: 28px;
    right: 28px;
    justify-content: center;
    min-height: 48px;
  }
}
