* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: #1a120c; color: #f5f0e8; }
body {
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  min-height: 100vh;
}
a { color: inherit; }
.topbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f5c518;
  text-decoration: none;
  font-size: 1.05rem;
}
.back {
  color: #f5f0e8;
  text-decoration: none;
  opacity: 0.9;
  font-size: 0.95rem;
  border: 1px solid #3a2a1c;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: #24180f;
}
.back:hover { color: #f5c518; border-color: #f5c518; }
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.hero img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  border-radius: 4px;
}
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
  text-align: center;
}
.section h1, .section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.section h1 { font-size: 1.6rem; color: #f5c518; }
.section p {
  opacity: 0.85;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.btn {
  display: inline-block;
  background: #f5c518;
  color: #1a120c;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 8px;
}
.btn.secondary {
  background: transparent;
  color: #f5c518;
  border: 2px solid #f5c518;
}
.btn:hover { filter: brightness(1.05); }
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  text-align: left;
}
@media (min-width: 800px) {
  .cards { grid-template-columns: 1fr 1fr 1fr; }
}
.card {
  background: #24180f;
  border: 2px solid #3a2a1c;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card h3 {
  font-size: 1.1rem;
  color: #f5c518;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}
.card .btn { align-self: flex-start; text-align: center; }
.contact {
  background: #24180f;
  border: 2px solid #3a2a1c;
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.contact h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.contact dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1rem;
  align-items: baseline;
}
.contact dt {
  color: #f5c518;
  font-weight: 700;
  font-size: 0.9rem;
}
.contact dd {
  margin: 0;
  opacity: 0.95;
  word-break: break-word;
}
.contact a {
  color: #f5f0e8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact a:hover { color: #f5c518; }
.contact .maps-btn {
  display: inline-block;
  margin-top: 1.15rem;
  width: 100%;
  text-align: center;
  text-decoration: none;
}
.frame-wrap {
  position: relative;
  width: 100%;
  height: min(78vh, 820px);
  border: 2px solid #3a2a1c;
  border-radius: 10px;
  overflow: hidden;
  background: #0f0b08;
  margin-top: 0.5rem;
}
.frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}
.note a { color: #f5c518; }
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}
