:root {
  --bg: #0f0d0a;
  --card-bg: #17120d;
  --border: #5d4727;
  --text-primary: #fff7e5;
  --text-secondary: #d8c08b;
  --accent: #d4a84f;
  --accent-hover: #f0c76b;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #2f2412 0%, var(--bg) 70%);
  font-family: -apple-system, "Segoe UI", "Malgun Gothic", sans-serif;
  color: var(--text-primary);
  padding: 24px;
}
main.card {
  background: linear-gradient(145deg, #22180f 0%, #120d08 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

main.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212,168,79,0.15), transparent 40%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}
.icon {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffd98f;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(212, 168, 79, 0.35);
}
h1 {
  font-size: clamp(13px, 2.6vw, 15px);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: #fff2cd;
}
p.desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 18px;
}
section.info {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 20px;
}
section.info h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 8px;
}
section.info p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 8px;
}

.promo-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 4px;
}

.small-text {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 6px;
}
.btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(90deg, var(--accent) 0%, #f6d17a 100%);
  color: #3b2a0d;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(212, 168, 79, 0.25);
}
.btn:hover {
  background: linear-gradient(90deg, var(--accent-hover) 0%, #d4a84f 100%);
  transform: translateY(-1px);
}
.note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 0.9;
}
.map-section {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 20px;
}
.map-section h2 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 6px;
}
.map-address {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 10px;
}
.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 79, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}
