/* =========================================
   ПРАГМАТИКА — CSS
   Палитра: тёплый кремовый + графит + охра
   ========================================= */

:root {
  --bg: #F4F0E8;
  --bg-soft: #EDE6D6;
  --ink: #1B1A17;
  --ink-soft: #4A4842;
  --muted: #8A867D;
  --line: #E0D9C6;
  --accent: #E2562A;     /* тёплая охра-оранжевый */
  --accent-dark: #C04018;
  --dark: #1B1A17;
  --light: #FAF7F0;

  --radius: 14px;
  --radius-lg: 24px;
  --transition: cubic-bezier(0.2, 0.7, 0.2, 1);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 240, 232, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 500; font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  background: var(--ink); color: var(--bg);
  border-radius: 50%; font-size: 18px;
}
.logo-text { font-style: italic; }

.nav-desktop { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  color: var(--ink-soft);
  transition: all .2s var(--transition);
}
.nav-link:hover { color: var(--ink); background: var(--bg-soft); }
.nav-link.active { color: var(--ink); background: var(--bg-soft); }

.header-cta { margin-left: 8px; }

.burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform .25s var(--transition), opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  padding: 12px 24px 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.nav-mobile a {
  padding: 14px 0; font-size: 18px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.nav-mobile.open { display: flex; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-ghost, .btn-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer;
  transition: transform .2s var(--transition), background .2s, color .2s;
  text-align: center;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-primary.big { padding: 18px 32px; font-size: 17px; }
.btn-primary.small { padding: 10px 18px; font-size: 14px; }

.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-ghost.small { padding: 10px 18px; font-size: 14px; }

.btn-light {
  background: var(--light); color: var(--ink);
}
.btn-light:hover { background: var(--accent); color: var(--light); }

/* ===== HERO (главная) ===== */
.hero {
  position: relative;
  padding: 15px 0 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(226, 86, 42, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(27, 26, 23, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  margin-bottom: 32px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4FB870; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 184, 112, 0.2);
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1; letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.accent-word {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

.weather-widget {
  display: inline-flex; align-items: center; gap: 20px;
  padding: 16px 22px;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius-lg);
  font-size: 14px;
}
.weather-label {
  font-weight: 500; opacity: 0.7;
  border-right: 1px solid rgba(244, 240, 232, 0.2);
  padding-right: 20px;
}
.weather-body { display: flex; align-items: center; gap: 12px; }
.weather-temp {
  font-family: var(--display); font-size: 28px;
  font-weight: 400;
}
.weather-desc { font-size: 14px; opacity: 0.85; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section.no-pad-top { padding-top: 0; }
.section-dark {
  background: var(--dark); color: var(--light);
}
.section-soft { background: var(--bg-soft); }

.section-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 720px;
}
.section-title.light { color: var(--light); }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.lead {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-soft);
  max-width: 580px;
}
.lead.light { color: rgba(250, 247, 240, 0.75); }
.link-arrow {
  font-weight: 600; font-size: 15px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }

/* ===== NEWS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news-card {
  display: flex; flex-direction: column;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: transform .3s var(--transition), border-color .3s, background .3s;
  min-height: 280px;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  background: var(--light);
}
.news-tag {
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--ink); color: var(--bg);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.news-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.news-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: auto;
}
.news-link {
  display: block; margin-top: 24px;
  font-weight: 600; font-size: 14px;
  color: var(--accent);
}

/* ===== ABOUT ===== */
.about-block {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text .eyebrow { color: var(--accent); }
.about-text .lead {
  color: rgba(250, 247, 240, 0.75);
  margin: 24px 0 32px;
  max-width: none;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.stat {
  padding: 28px;
  background: rgba(250, 247, 240, 0.05);
  border: 1px solid rgba(250, 247, 240, 0.1);
  border-radius: var(--radius);
}
.stat strong {
  display: block;
  font-family: var(--display); font-weight: 400;
  font-size: 48px; line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat span {
  color: rgba(250, 247, 240, 0.6);
  font-size: 14px;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 40px 28px;
  transition: background .3s, transform .3s var(--transition);
}
.service-card:hover { background: var(--light); }
.service-num {
  font-family: var(--display); font-weight: 400;
  font-size: 48px; color: var(--accent);
  margin-bottom: 32px; letter-spacing: -0.03em;
}
.service-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-card p { font-size: 14px; color: var(--ink-soft); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 800px; }
.faq { display: flex; flex-direction: column; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item {
  background: var(--bg);
  transition: background .2s;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 28px; font-weight: 300;
  transition: transform .25s var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { background: var(--bg-soft); }
.faq-item p {
  padding: 0 28px 28px;
  color: var(--ink-soft);
  font-size: 16px;
}
.faq-item p a {
  color: var(--accent); border-bottom: 1px solid currentColor;
}

/* ===== CTA ===== */
.cta-section {
  padding: 96px 0;
  background: var(--ink);
  color: var(--light);
}
.cta-inner { text-align: center; }
.cta-inner h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 18px;
  opacity: 0.8;
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: center;
}
.section-dark .cta-inner h2 { color: var(--light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark); color: var(--light);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .muted { color: rgba(250, 247, 240, 0.5); font-size: 14px; }
.footer-col h4 {
  font-family: var(--body); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(250, 247, 240, 0.5);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  padding: 4px 0;
  color: var(--light);
  font-size: 15px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  font-size: 13px; color: rgba(250, 247, 240, 0.5);
}
.muted { color: var(--muted); }

/* ===== PAGE HERO (внутренние страницы) ===== */
.page-hero {
  padding: 60px 0 90px;
  position: relative;
  overflow: hidden;
  --page-bg: url("https://img.vebinarix.ru/photos/lisa/coworking-blur.jpg");
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(244, 240, 232, 0) 0%,
      rgba(244, 240, 232, 0) 60%,
      var(--bg) 100%
    ),
    linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(244, 240, 232, 0.96) 26%,
      rgba(244, 240, 232, 0.72) 50%,
      rgba(244, 240, 232, 0.32) 72%,
      rgba(226, 86, 42, 0.10) 100%
    ),
    var(--page-bg) right center / cover no-repeat;

  z-index: 0;
  pointer-events: none;
}
body.page-spaces .page-hero::before {
  background:
    linear-gradient(180deg, rgba(244,240,232,0) 0%, rgba(244,240,232,0) 60%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(244,240,232,0.96) 26%, rgba(244,240,232,0.72) 50%, rgba(244,240,232,0.32) 72%, rgba(226,86,42,0.10) 100%),
    url("https://img.vebinarix.ru/photos/lisa/coworking-blur.jpg") right center / cover no-repeat;
}

body.page-events .page-hero::before {
  background:
    linear-gradient(180deg, rgba(244,240,232,0) 0%, rgba(244,240,232,0) 60%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(244,240,232,0.96) 26%, rgba(244,240,232,0.72) 50%, rgba(244,240,232,0.32) 72%, rgba(226,86,42,0.10) 100%),
    url("https://img.vebinarix.ru/photos/lisa/coworking-blur2.jpg") right center / cover no-repeat;
}

body.page-booking .page-hero::before {
  background:
    linear-gradient(180deg, rgba(244,240,232,0) 0%, rgba(244,240,232,0) 60%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(244,240,232,0.96) 26%, rgba(244,240,232,0.72) 50%, rgba(244,240,232,0.32) 72%, rgba(226,86,42,0.10) 100%),
    url("https://img.vebinarix.ru/photos/lisa/coworking-blur3.jpg") right center / cover no-repeat;
}

body.page-contacts .page-hero::before {
  background:
    linear-gradient(180deg, rgba(244,240,232,0) 0%, rgba(244,240,232,0) 60%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(244,240,232,0.96) 26%, rgba(244,240,232,0.72) 50%, rgba(244,240,232,0.32) 72%, rgba(226,86,42,0.10) 100%),
    url("https://img.vebinarix.ru/photos/lisa/coworking-blur4.jpg") right center / cover no-repeat;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 900px;
}
.page-lead {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
}

/* ===== SPACES ===== */
.spaces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.space-card {
  display: flex; flex-direction: column;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--transition);
}
.space-card:hover { transform: translateY(-6px); }
.space-image {
  height: 260px;
  background-size: cover; background-position: center;
  position: relative;
}
.space-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.2) 100%);
}
.space-body { padding: 28px 32px 32px; }
.space-metro {
  display: inline-block;
  padding: 4px 10px;
  background: var(--bg);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  margin-bottom: 16px;
}
.space-body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 28px; letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.space-body > p {
  color: var(--ink-soft); font-size: 15px;
  margin-bottom: 24px;
}
.space-meta {
  display: flex; gap: 24px;
  list-style: none;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.space-meta li {
  display: flex; flex-direction: column;
}
.space-meta span {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.space-meta strong {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; margin-top: 4px;
}

/* ===== EVENTS ===== */
.filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--body); font-weight: 500; font-size: 14px;
  cursor: pointer;
  transition: all .2s var(--transition);
  color: var(--ink-soft);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.filter-btn.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-card {
  padding: 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: all .3s var(--transition);
  display: flex; flex-direction: column;
  min-height: 320px;
}
.event-card:hover { transform: translateY(-4px); border-color: var(--ink); }
.event-date {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-weight: 400;
  font-size: 40px; line-height: 1;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.event-date .month {
  font-size: 16px; font-family: var(--body); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--muted);
}
.event-type {
  display: inline-block;
  padding: 4px 10px;
  background: var(--ink); color: var(--bg);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
  align-self: flex-start;
}
.event-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.event-card .event-place {
  font-size: 14px; color: var(--ink-soft);
  margin-bottom: auto;
}
.event-card .event-cta {
  margin-top: 20px;
  font-weight: 600; font-size: 14px;
  color: var(--accent);
}
.loader {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 0;
  color: var(--muted);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1.5px solid transparent;
  transition: all .3s var(--transition);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--accent);
}
.ribbon {
  position: absolute; top: -12px; right: 24px;
  padding: 6px 14px;
  background: var(--accent); color: white;
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.price-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 24px; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.price {
  font-family: var(--display); font-weight: 300;
  font-size: 28px; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.price span {
  font-size: 56px; font-weight: 400;
  letter-spacing: -0.03em;
}
.price-card ul {
  list-style: none;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.price-card li {
  padding-left: 22px; position: relative;
  font-size: 14px; line-height: 1.4;
}
.price-card li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--accent); font-weight: 600;
}
.price-card.featured li::before { color: var(--accent); }
.price-card.featured ul li { color: rgba(244, 240, 232, 0.85); }
.price-card .btn-ghost,
.price-card .btn-primary { margin-top: auto; }
.price-card.featured .btn-primary {
  background: var(--accent); color: white;
}
.price-card.featured .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* ===== FORM ===== */
.form-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.form-intro { position: sticky; top: 100px; }
.booking-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.booking-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
}
.booking-form label.full { width: 100%; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--body); font-size: 16px;
  color: var(--ink);
  transition: border-color .2s, background .2s;
  outline: none;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--ink);
  background: var(--bg);
}
.booking-form textarea { resize: vertical; min-height: 80px; }
.booking-form .checkbox {
  flex-direction: row; align-items: center; gap: 10px;
  font-weight: 500; color: var(--ink-soft); font-size: 14px;
}
.booking-form .checkbox input { width: 18px; height: 18px; accent-color: var(--accent); }
.form-status {
  padding: 14px 16px; border-radius: var(--radius);
  font-weight: 500; font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: #E4F4E8; color: #2E7D3F; border: 1px solid #BFE3C7;
}
.form-status.error {
  display: block;
  background: #FCE8E2; color: #B23E15; border: 1px solid #F2C6B6;
}

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  margin-top: -55px;
}
.contact-card {
  padding: 28px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  transition: transform .3s var(--transition);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 24px; margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-card p { font-size: 15px; margin: 4px 0; }
.contact-card a {
  display: inline-block; margin-top: 12px;
  font-weight: 600; color: var(--accent);
  border-bottom: 1px solid currentColor;
}
.map {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn .8s var(--transition) forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--transition), transform .8s var(--transition);
  transition-delay: calc(var(--i, 0) * 0.08s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .news-grid, .events-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .about-block { grid-template-columns: 1fr; gap: 48px; }
  .form-block { grid-template-columns: 1fr; gap: 40px; }
  .form-intro { position: static; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 80px; }
  .news-grid, .events-grid, .spaces-grid,
  .pricing-grid, .contacts-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat strong { font-size: 36px; }
  .weather-widget { flex-wrap: wrap; gap: 12px; }
  .weather-label { border-right: 0; padding-right: 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; }
}
