:root {
  color-scheme: light;
  --bg: #f6efe9;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.88);
  --text: #1d2230;
  --muted: #6d7587;
  --border: rgba(29, 34, 48, 0.08);
  --shadow: 0 28px 90px rgba(31, 25, 20, 0.14);
  --accent: #d6a18d;
  --accent-dark: #ae6f57;
  --teal: #2a9d8f;
  --insta: #d62976;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 161, 141, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(42, 157, 143, 0.16), transparent 26%),
    linear-gradient(180deg, #fffaf7 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  padding: 24px;
}

.shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0;
  box-shadow: 0 10px 24px rgba(31, 25, 20, 0.08);
}

.panel-logo {
  display: block;
  width: min(240px, 100%);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small,
.topbar-cta,
.eyebrow,
.lead,
.mini-stat span,
.panel-card span,
.contact-card span {
  letter-spacing: 0.01em;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.84rem;
}

.topbar-cta,
.book-btn,
.ghost-btn,
.contact-card {
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.topbar-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--border);
  font-weight: 700;
}

.topbar-cta:hover,
.book-btn:hover,
.ghost-btn:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.card {
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero::before {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -70px;
  background: rgba(214, 161, 141, 0.16);
}

.hero::after {
  width: 180px;
  height: 180px;
  right: 120px;
  bottom: -70px;
  background: rgba(42, 157, 143, 0.12);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.book-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.book-btn {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 16px 28px rgba(174, 111, 87, 0.24);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-stat,
.panel-card,
.contact-card {
  border: 1px solid var(--border);
  background: var(--card-strong);
}

.mini-stat {
  padding: 16px;
  border-radius: 18px;
}

.mini-stat span,
.panel-card span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mini-stat strong,
.panel-card strong,
.contact-card strong {
  display: block;
  line-height: 1.4;
}

.mini-stat strong {
  font-size: 0.98rem;
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-content: center;
}

.panel-card {
  border-radius: 24px;
  padding: 18px;
}

.brand-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.brand-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.brand-card strong {
  font-size: 1.08rem;
}

.info-card.accent {
  background: linear-gradient(135deg, rgba(214, 161, 141, 0.2), rgba(42, 157, 143, 0.12));
}

.info-card strong {
  font-size: 1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.map-section {
  margin-top: 18px;
  padding: 18px;
}

.map-header {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.map-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
}

.contact-card {
  padding: 18px 20px;
  border-radius: 22px;
}

.contact-card:hover {
  box-shadow: 0 14px 30px rgba(31, 25, 20, 0.08);
}

.phone strong {
  color: var(--accent-dark);
}

.telegram strong {
  color: var(--teal);
}

.instagram strong {
  color: var(--insta);
}

.channel strong {
  color: #229ed9;
}

@media (max-width: 860px) {
  .hero,
  .cards,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    gap: 22px;
  }

  .map-section {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 16px;
  }

  .card {
    border-radius: 26px;
  }

  h1 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .book-btn,
  .ghost-btn,
  .topbar-cta {
    width: 100%;
  }
}
