:root {
  --bg: #09100d;
  --bg-2: #111914;
  --panel: rgba(16, 23, 19, 0.92);
  --panel-strong: rgba(18, 26, 21, 0.98);
  --text: #f5efe3;
  --muted: #bfb6a3;
  --gold: #c4b166;
  --gold-2: #e6d6a1;
  --green: #193026;
  --line: rgba(196, 177, 102, 0.18);
  --danger: #ff8585;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1200px;
  --header-height: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at top right, rgba(196, 177, 102, 0.11), transparent 24%),
    radial-gradient(circle at left center, rgba(25, 48, 38, 0.22), transparent 34%),
    linear-gradient(180deg, #09100d 0%, #111914 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

section[id] { scroll-margin-top: 74px; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

h1, h2, h3, p { margin: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.06;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.03rem;
  line-height: 1.24;
  margin-bottom: 10px;
}

.section {
  padding: 84px 0;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head p,
.hero-text,
.info-card p,
.space-card p,
.price-note,
.store-card p,
.booking-side p,
.contact-card p,
.footer-text,
.form-note,
.cookie-banner p,
.policy-card p,
.policy-card li {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(196, 177, 102, 0.06);
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #171510;
  box-shadow: var(--shadow);
}
.btn-outline {
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn-dark {
  background: rgba(25, 48, 38, 0.28);
  border-color: rgba(25, 48, 38, 0.48);
  color: #dde6dc;
}
.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.94rem;
}
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(9, 16, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}
.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  height: 36px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.site-header.compact {
  background: rgba(9, 16, 13, 0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}
.site-header.compact .brand-logo {
  height: 32px;
}
.main-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.94rem;
}
.main-nav a,
.contact-list a,
.footer-links a,
.footer-contact a {
  color: #ddd5c3;
  transition: color 0.18s ease;
}
.main-nav a:hover,
.contact-list a:hover,
.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-link {
  color: var(--muted);
  font-size: 0.94rem;
  white-space: nowrap;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}
.lang-switch a {
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.85rem;
}
.lang-switch a.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #171510;
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 42px 0 64px;
}
.hero-grid,
.split-grid,
.pricing-grid,
.booking-grid,
.contact-grid,
.footer-grid,
.store-grid,
.spaces-grid {
  display: grid;
  gap: 24px;
}
.hero-grid {
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
}
.hero-copy {
  max-width: 690px;
}
.hero-text {
  font-size: 0.98rem;
  margin-bottom: 26px;
}
.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card,
.hero-panel,
.info-card,
.space-card,
.price-card,
.store-card,
.booking-side,
.booking-form,
.contact-card,
.map-card,
.policy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card {
  padding: 18px 16px;
}
.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.28rem;
  margin-bottom: 4px;
}
.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(17, 24, 20, 0.96), rgba(13, 19, 16, 0.96)),
    radial-gradient(circle at top right, rgba(196,177,102,0.16), transparent 28%);
}
.hero-panel .brand-panel-logo {
  width: min(100%, 480px);
  max-height: 104px;
  object-fit: contain;
  margin-bottom: 24px;
}
.hero-list,
.feature-list,
.contact-list,
.store-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 8px;
}
.hero-list li,
.feature-list li,
.contact-list li,
.store-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}
.hero-list li::before,
.feature-list li::before,
.contact-list li::before,
.store-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.split-grid,
.contact-grid,
.booking-grid {
  grid-template-columns: 1fr 1fr;
}
.info-card,
.booking-side,
.booking-form,
.contact-card,
.store-card,
.policy-card {
  padding: 26px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.tag-list span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #e9e1cf;
  font-size: 0.92rem;
}

.spaces-grid {
  grid-template-columns: repeat(3, 1fr);
}
.space-card {
  overflow: hidden;
}
.space-media {
  aspect-ratio: 4 / 3;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.space-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(196,177,102,0.18), transparent 26%),
    linear-gradient(145deg, #203129 0%, #0f1512 50%, #2a3b32 100%);
}
.space-card:nth-child(2) .space-media::before,
.space-card:nth-child(6) .space-media::before {
  background:
    radial-gradient(circle at top right, rgba(196,177,102,0.18), transparent 26%),
    linear-gradient(145deg, #342a1f 0%, #14100d 50%, #3e3327 100%);
}
.space-card:nth-child(3) .space-media::before {
  background:
    radial-gradient(circle at top right, rgba(196,177,102,0.14), transparent 26%),
    linear-gradient(145deg, #2c2334 0%, #121015 48%, #3b2f47 100%);
}
.space-card:nth-child(4) .space-media::before {
  background:
    radial-gradient(circle at top right, rgba(196,177,102,0.14), transparent 26%),
    linear-gradient(145deg, #20352c 0%, #101512 50%, #2d473b 100%);
}
.space-card:nth-child(5) .space-media::before {
  background:
    radial-gradient(circle at top right, rgba(196,177,102,0.14), transparent 26%),
    linear-gradient(145deg, #32413b 0%, #131716 50%, #5b6f63 100%);
}
.space-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 11, 10, 0.62);
  color: #f5ead1;
  font-size: 0.82rem;
}
.space-body {
  padding: 22px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}
.price-card {
  overflow: hidden;
}
.price-card.featured {
  border-color: rgba(196, 177, 102, 0.34);
  background:
    linear-gradient(180deg, rgba(23,30,26,.98), rgba(15,20,17,.94)),
    radial-gradient(circle at top right, rgba(196,177,102,0.12), transparent 32%);
}
.price-head {
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-head span {
  display: block;
  color: var(--gold);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 6px;
}
.price-rows {
  padding: 8px 22px 22px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-row:last-child { border-bottom: 0; }
.price-row strong {
  display: block;
  font-size: 0.98rem;
}
.price-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.price-row b {
  color: var(--gold-2);
  font-size: 1.06rem;
  white-space: nowrap;
}
.price-note {
  margin-top: 16px;
  font-size: 0.92rem;
}

.store-grid {
  grid-template-columns: 1.05fr 0.95fr;
}
.store-card h3 {
  margin-bottom: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full { grid-column: 1 / -1; }
.field span {
  color: #e9e1cf;
  font-size: 0.92rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(196,177,102,0.5);
  background: rgba(255,255,255,0.05);
}
input::placeholder,
textarea::placeholder {
  color: #9f9887;
}
textarea {
  min-height: 128px;
  resize: vertical;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form-error {
  display: none;
  margin-bottom: 12px;
  color: var(--danger);
  font-size: 0.92rem;
}
.form-error.is-visible {
  display: block;
}
.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) contrast(1.02) saturate(0.9);
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.15);
}
.footer-grid {
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  align-items: start;
  gap: 24px 34px;
}
.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 520px;
}
.footer-logo {
  width: min(100%, 360px);
  height: auto;
  max-height: 88px;
  object-fit: contain;
}
.footer-text {
  max-width: 520px;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-content: start;
}
.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.footer-bottom {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  min-width: 58px;
  min-height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  box-shadow: 0 12px 34px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.float-whatsapp {
  background: linear-gradient(135deg, #22c55e 0%, #1a9d49 100%);
  color: #ffffff;
}
.float-call {
  background: rgba(18, 23, 20, 0.94);
  color: var(--text);
  border-color: rgba(196,177,102,0.22);
}
.float-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.float-text {
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  pointer-events: auto;
  left: 18px;
  bottom: 18px;
  z-index: 1300;
  width: min(420px, calc(100% - 36px));
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 17, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.cookie-banner.is-hidden {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-page {
  min-height: 100vh;
}
.policy-main {
  padding: 54px 0 88px;
}
.policy-wrap {
  max-width: 920px;
}
.policy-card {
  margin-top: 20px;
}
.policy-card ul {
  margin: 0;
  padding-left: 18px;
}
.policy-card li + li {
  margin-top: 8px;
}

@media (max-width: 1260px) {
  .phone-link {
    display: none;
  }
}

@media (max-width: 1100px) {
  .phone-link {
    display: none;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.92rem;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .header-row {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 0;
  }

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 2px;
  }

  .site-header.open .main-nav {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .pricing-grid,
  .store-grid,
  .booking-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .header-actions .btn-outline,
  .header-actions .phone-link {
    display: none;
  }

  .header-actions .btn-gold {
    justify-self: end;
    width: auto;
    min-width: 136px;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 860px) {
  .brand-logo {
    height: 32px;
    max-width: 210px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  h1 {
    font-size: clamp(1.55rem, 7.2vw, 2.3rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.28rem, 5.8vw, 1.78rem);
  }

  .hero {
    min-height: auto;
    padding-top: 24px;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .cookie-actions .btn {
    width: 100%;
  }

  .header-row {
    row-gap: 8px;
  }

  .brand-logo {
    height: 28px;
    max-width: 185px;
  }

  .site-header.compact .brand-logo {
    height: 26px;
  }

  .header-actions {
    grid-template-columns: auto 1fr;
    gap: 10px;
  }

  .header-actions .btn-gold {
    max-width: 170px;
    min-width: 0;
    width: 100%;
  }

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

  .footer-logo {
    width: min(100%, 280px);
    max-height: none;
  }

  .float-text {
    display: none;
  }

  .float-btn {
    width: 60px;
    min-width: 60px;
    min-height: 60px;
    padding: 0;
  }

  .float-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    height: 26px;
    max-width: 170px;
  }

  .header-actions {
    align-items: center;
  }

  .hero-panel,
  .info-card,
  .space-body,
  .price-head,
  .price-rows,
  .store-card,
  .booking-side,
  .booking-form,
  .contact-card,
  .policy-card,
  .stat-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}