:root {
  --bg: #14110f;
  --bg-alt: #1c1815;
  --line: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.88);
  --text-dim: rgba(255,255,255,0.55);
  --accent: #d7722a;
  --accent-dim: #a85a22;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  min-height: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

header.site-header {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
}

.logo {
  width: 130px;
  height: auto;
  margin-bottom: 18px;
}

.brand {
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 4px;
}

main {
  width: 100%;
  max-width: 720px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px;
}

h1 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  margin: 28px 0 10px;
  font-weight: 700;
}

.lead {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 8px;
}

.lead strong {
  color: var(--accent);
  font-weight: 600;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.reservation-block {
  width: 100%;
  margin-top: 40px;
  text-align: left;
}

.reservation-block h2 {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.iframe-wrap {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
}

footer {
  width: 100%;
  max-width: 720px;
  padding: 28px 0 40px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--text-dim);
  font-size: 0.85rem;
}

footer nav {
  margin-bottom: 10px;
}

footer a {
  color: var(--text-dim);
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: var(--accent);
}

footer .contact {
  margin-top: 6px;
}

footer .contact a {
  color: var(--text-dim);
}

/* legal pages */
.legal main {
  align-items: stretch;
  text-align: left;
}

.legal h1 {
  text-align: left;
}

.legal .rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 32px;
}

.legal section {
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.legal section h2 {
  color: var(--text);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.legal section p {
  margin: 0 0 10px;
}

.legal section ul {
  margin: 8px 0;
  padding-left: 20px;
}

.legal a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent-dim);
}

.legal a:hover {
  color: var(--accent);
}

.back-link {
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 32px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
}

.back-link:hover {
  color: var(--accent);
}

@media (max-width: 480px) {
  .iframe-wrap iframe { height: 720px; }
}
