:root {
  --gold: #c9a227;
  --gold-soft: #e0c36a;
  --black: #0b0b0b;
  --dark: #141414;
  --text: #e8e8e8;
  --muted: #b7b7b7;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 11, 11, 0.92);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 58px;
  width: auto;
}

.mainnav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mainnav a {
  color: var(--text);
}

.mainnav a:hover,
.nav-phone {
  color: var(--gold) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.78));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 20px 60px;
}

.hero-logo {
  width: min(280px, 70vw);
  margin: 0 auto 24px;
}

.hero h1 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero h1 a {
  color: #fff;
}

.hero h1 a:hover {
  color: var(--gold-soft);
}

.tagline {
  margin: 14px 0 28px;
  color: var(--gold-soft);
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-dark {
  background: #111;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.focus {
  background: var(--dark);
  padding: 90px 0;
  text-align: center;
}

.focus h2,
.about h2 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #1c1c1c;
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 32px 24px;
  text-align: left;
}

.card h3 {
  color: #fff;
  margin-bottom: 10px;
}

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

.about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.lead {
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
}

.about p,
.about li {
  margin-bottom: 12px;
  color: var(--muted);
}

.about ul {
  margin: 8px 0 16px 18px;
}

.about-photo img {
  width: 100%;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  background: #0a0a0a;
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 12px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact h3 {
  color: var(--gold);
  margin-bottom: 4px;
}

.copyright {
  border-top: 1px solid #222;
  text-align: center;
  color: #888;
  font-size: 13px;
  padding: 16px;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 99;
}

.wa-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 900px) {
  .cards,
  .about-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .mainnav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
  }

  .mainnav.open {
    display: flex;
  }
}
