:root {
  --bg: #e8ecef;
  --surface: #ffffff;
  --surface-2: #f2f5f7;
  --text: #141a20;
  --muted: #4b5763;
  --accent: #c8102e;
  --accent-2: #8f0b21;
  --line: #b9c2cb;
  --shadow: 0 6px 16px rgba(7, 13, 19, 0.12);
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  background: linear-gradient(180deg, #f4f6f8 0%, var(--bg) 45%, #dde3e8 100%);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

.bg-glow {
  display: none;
}

.bg-glow-1 {
  top: -10rem;
  left: -8rem;
  background: #ce1c27;
}

.bg-glow-2 {
  right: -8rem;
  top: 20rem;
  background: #f26f76;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-chip {
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--accent);
}

.icon-chip .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(236, 239, 241, 0.96);
  border-bottom: 1px solid rgba(95, 108, 121, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.6rem;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--text);
}

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.35rem;
  display: inline-grid;
  place-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #ffffff;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  padding: 0.42rem 0.75rem;
  font: inherit;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.hero {
  padding: 5.7rem 0 3.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 1.8rem;
}

.hero-copy {
  max-width: 64ch;
}

.hero-visual {
  margin: 0;
  position: relative;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  min-height: 0;
  width: min(100%, 410px);
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  justify-self: end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 14px 24px rgba(7, 13, 19, 0.28));
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.88rem;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  margin-bottom: 1rem;
}

.hero-text {
  max-width: 63ch;
  margin: 0;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 6px;
  padding: 0.72rem 1.1rem;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.btn:hover {
  box-shadow: 0 3px 10px rgba(7, 13, 19, 0.18);
}

.btn-primary {
  color: #ffffff;
  background: var(--accent);
  border: 1px solid rgba(95, 8, 24, 0.45);
  box-shadow: 0 4px 12px rgba(95, 8, 24, 0.28);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-secondary {
  color: var(--text);
  background: var(--surface-2);
  border: 1px solid var(--line);
}

.live-status {
  margin-top: 0.85rem;
  color: var(--accent-2);
  font-weight: 700;
}

.section {
  padding: 3.1rem 0;
}

.section-head {
  margin-bottom: 1.3rem;
}

.section h2 {
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  margin: 0.25rem 0 0;
}

.cards {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.facts {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.facts div + div {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.facts dt {
  font-weight: 700;
  color: var(--accent);
}

.facts dd {
  margin: 0.2rem 0 0;
  color: var(--text);
}

.facts a,
.contact-card a {
  color: var(--accent-2);
}

.gallery {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.gallery.gallery-collapsed figure:nth-child(n + 9) {
  display: none;
}

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

.gallery-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
}

.contact-card p {
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--muted);
}

.map-wrap {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.site-footer {
  margin-top: 2.4rem;
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.reveal {
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
    max-width: min(560px, 100%);
    justify-self: center;
  }

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

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

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

@media (max-width: 760px) {
  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 4.1rem;
    left: 4vw;
    right: 4vw;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0.65rem;
  }

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

  .hero {
    padding-top: 4.7rem;
  }

  .hero-visual {
    aspect-ratio: 1 / 1;
    width: min(100%, 340px);
    padding: 0;
  }

  .hero-visual img {
    object-fit: cover;
    object-position: center 35%;
  }

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

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

  .gallery.gallery-collapsed figure:nth-child(n + 5) {
    display: none;
  }

  .gallery figure {
    min-height: 0;
  }

}
