* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff5f5;
  color: #1f2937;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 2px solid #d91c24;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #b3141c;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: #7f1d1d;
  font-weight: 700;
}

.hero {
  background: #ffffff;
  display: flex;
  align-items: stretch;
  padding: 0 0 24px;
}

.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1080 / 566;
  max-height: 566px;
  overflow: hidden;
  background: #f9e6e6;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #f9e6e6;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 3s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow {
  color: #b3141c;
}

.text-dark {
  color: #b3141c;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.1;
  color: #b3141c;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.05rem;
  color: #4b5563;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: #b3141c;
  color: #ffffff;
}

.btn-light {
  background: transparent;
  border: 1px solid #b3141c;
  color: #b3141c;
}

.btn-outline {
  background: #ffffff;
}

.card,
.contact-box {
  background: #ffffff;
  color: #1f2937;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.section h2 {
  margin-top: 0;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.card h3 {
  color: #b3141c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1080 / 566;
  height: auto;
}

.section-contact {
  background: #fee2e2;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 760px) {
  .two-col,
  .cards,
  .gallery-grid,
  .contact-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
  }
}
