:root {
  --bg-main: #121212;
  --bg-soft: #1e1e1e;
  --bg-elevated: #2a2a2a;
  --cta: #fec41c;
  --text-main: #ffffff;
  --text-soft: #d9d9d9;
  --card-border: #2a2a2a;
  --card-shadow: 0 4px 20px rgba(254, 196, 28, 0.2);
  --card-glow: 0 0 20px rgba(254, 196, 28, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background: #000;
  min-height: 100vh;
}

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

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 1.25rem 1rem 1rem;
}

.hero {
  text-align: center;
  margin-bottom: 1.25rem;
}

.hero__logo-wrap {
  width: min(320px, 90vw);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.hero__logo {
  width: 100%;
  height: auto;
}

.hero__tagline {
  margin: 0.9rem auto 0;
  font-size: clamp(1rem, 4vw, 1.45rem);
  font-weight: 600;
  color: var(--text-soft);
}

.quick-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #101010;
  background: var(--cta);
  border-radius: 16px;
  min-height: 58px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid #f7cd4f;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.action-card i {
  width: 20px;
  height: 20px;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-1px) scale(1.03);
  box-shadow: var(--card-glow);
  filter: brightness(1.05);
}

.action-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.map-section {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.75), rgba(18, 18, 18, 0.95));
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 0.85rem;
}

.map-section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.02rem, 4vw, 1.35rem);
  font-weight: 600;
  color: var(--text-main);
}

.map-section__address {
  margin: 0 0 0.7rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.35;
}

.map-frame {
  border-radius: 14px;
  border: 1px solid rgba(254, 196, 28, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background: #101010;
}

.map-frame iframe {
  width: 100%;
  height: clamp(180px, 36vh, 320px);
  border: 0;
}

.site-footer {
  padding: 0.85rem 1rem 1.1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-soft);
}

@media (min-width: 768px) {
  .page {
    padding: 1.6rem 1.4rem 1.25rem;
  }

  .hero {
    margin-bottom: 1.45rem;
  }

  .hero__logo-wrap {
    width: min(500px, 78vw);
  }

  .quick-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .action-card {
    min-height: 62px;
  }

  .map-section {
    margin-top: 3rem;
    padding: 1.15rem;
  }

  .map-frame iframe {
    height: clamp(250px, 43vh, 400px);
  }
}

@media (min-width: 1280px) {
  .page {
    padding: 2.1rem 1.6rem 1.4rem;
  }

  .hero__logo-wrap {
    width: min(620px, 65vw);
  }

  .hero__tagline {
    margin-top: 1rem;
  }
}
