:root {
  --yellow: #f6c21b;
  --yellow-soft: #f8d34b;
  --black: #050505;
  --text-main: #f8f8f8;
  --text-muted: #cccccc;
  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
                Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-stack);
  color: var(--text-main);
  background-color: var(--black);
  line-height: 1.5;
}

/* HEADER */

.site-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.8));
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 1080px;
  margin: 0 auto;
}

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* HERO */

.hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 1.5rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(246, 194, 27, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(246, 194, 27, 0.08), transparent 55%),
    #000;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--yellow-soft);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.3vw + 1rem, 3rem);
  margin: 0 0 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.cta-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.social-links li {
  margin-bottom: 0.35rem;
}

.social-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  border-color: var(--yellow);
  color: var(--yellow-soft);
}

.hero-email {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-email a {
  color: var(--yellow-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 211, 75, 0.7);
}

.hero-email a:hover {
  color: var(--yellow);
}

/* MAP SECTION */

.map-section {
  padding: 2.5rem 1.5rem 3.5rem;
  background-color: var(--yellow);
  color: #000;
}

.map-section .map-overlay {
  max-width: 720px;
  margin: 0 auto 1.75rem;
  text-align: left;
}

.map-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.map-section p {
  margin: 0;
  color: #222;
}

.map-image-wrap {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.map-image {
  display: block;
  width: 100%;
  height: auto;
}

/* FOOTER */

.site-footer {
  padding: 1.25rem 1.5rem 1.8rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* RESPONSIVE */

@media (max-width: 640px) {
  .logo-title {
    font-size: 0.85rem;
  }

  .logo-tagline {
    display: none;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .map-section {
    padding-top: 2rem;
  }
}
