@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --bg: #080c18;
  --bg-soft: #0e1424;
  --bg-muted: #141b30;
  --text: #f0ece4;
  --muted: #8a8fa8;
  --primary: #c9a96e;
  --primary-foreground: #080c18;
  --accent: #3d8c7e;
  --danger: #c0392b;
  --border: rgba(201, 169, 110, 0.14);
  --border-strong: rgba(201, 169, 110, 0.3);
  --content: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.5 "DM Sans", sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.guest-layout {
  min-height: 100vh;
}

.guest-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 12, 24, 0.95);
  backdrop-filter: blur(12px);
}

.guest-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.guest-logo__text {
  color: var(--primary);
  font: 500 18px/1 "Playfair Display", serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guest-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.guest-nav a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.guest-nav a:hover,
.guest-nav a.is-active {
  color: var(--primary);
}

.guest-main {
  min-height: calc(100vh - 71px);
}

.guest-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.guest-footer__inner {
  width: min(calc(100% - 40px), 1120px);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.guest-footer__brand {
  margin: 0 0 6px;
  color: var(--primary);
  font: 500 14px/1 "Playfair Display", serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.guest-footer__copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.guest-footer__made-with {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(201, 169, 110, 0.28);
  background: rgba(201, 169, 110, 0.07);
  color: rgba(240, 236, 228, 0.88);
  transition: all 0.2s ease;
  align-self: center;
}

.guest-footer__made-with span {
  font-size: 12px;
  color: rgba(240, 236, 228, 0.7);
}

.guest-footer__made-with strong {
  color: var(--primary);
  font: 500 13px/1 "Playfair Display", serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-footer__made-with:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(201, 169, 110, 0.11);
}

.guest-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}

.guest-mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(8, 12, 24, 0.97);
  backdrop-filter: blur(12px);
  padding: 4px 2px calc(4px + env(safe-area-inset-bottom));
}

.guest-mobilebar a {
  flex: 1;
  min-width: 0;
  color: var(--muted);
  text-align: center;
  font: 400 9px/1.1 "DM Mono", monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guest-mobilebar a.is-active {
  color: var(--primary);
}

.section-shell {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.section-shell--narrow {
  width: min(calc(100% - 40px), 1040px);
}

.section-shell--form {
  width: min(calc(100% - 40px), 760px);
}

.section-shell--compact {
  width: min(calc(100% - 40px), 420px);
}

.section-label {
  margin: 0 0 12px;
  color: var(--primary);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  color: var(--text);
  font: 400 clamp(34px, 5vw, 80px)/1.02 "Playfair Display", serif;
}

.page-title {
  margin: 0 0 16px;
  color: var(--text);
  font: 400 clamp(32px, 4vw, 58px)/1.06 "Playfair Display", serif;
}

.page-lead,
.muted-copy,
.body-copy {
  margin: 0;
  color: var(--muted);
}

.body-copy {
  color: rgba(240, 236, 228, 0.86);
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #d4b47a;
}

.btn-ghost {
  color: var(--primary);
  border-color: rgba(201, 169, 110, 0.4);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: rgba(201, 169, 110, 0.08);
}

.hero-home {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #050810;
}

.hero-home--text-only {
  min-height: 720px;
}

.hero-home--text-only .hero-home__content {
  padding-bottom: 96px;
}

.hero-home__media,
.hero-home__overlay {
  position: absolute;
  inset: 0;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: end start;
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(201, 169, 110, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(61, 140, 126, 0.18), transparent 34%),
    linear-gradient(180deg, #12192c 0%, #080c18 100%);
}

.image-placeholder span {
  color: rgba(240, 236, 228, 0.92);
  font: 500 clamp(26px, 4vw, 46px)/1.05 "Playfair Display", serif;
}

.image-placeholder--panel {
  min-height: 260px;
}

.hero-home__overlay {
  background: linear-gradient(to top, #080c18 30%, rgba(8, 12, 24, 0.5) 70%, rgba(8, 12, 24, 0.2) 100%);
}

.hero-home__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  padding: 0 0 64px;
}

.hero-home__content .section-label {
  margin-bottom: 8px;
}

.hero-home__content .display-title {
  margin-bottom: 10px;
}

.hero-home__lead {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-home__actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.facts-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.facts-strip__grid {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 24px 0;
}

.fact-item__label {
  margin: 0 0 6px;
  color: var(--muted);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fact-item__value {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.content-section {
  padding: 72px 0;
}

.content-section--tight {
  padding: 48px 0;
}

.content-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.text-link {
  color: var(--primary);
  font-size: 14px;
}

.divider {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--border);
}

.divider span {
  color: var(--primary);
  font: 400 12px/1 "DM Mono", monospace;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cards-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.card-panel,
.event-card,
.quick-card,
.about-card,
.team-card-egc,
.offer-card,
.event-row,
.booking-card,
.profile-card,
.empty-panel,
.menu-block {
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.event-card {
  overflow: hidden;
}

.event-card__media {
  position: relative;
  height: 176px;
  overflow: hidden;
  background: var(--bg-muted);
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.event-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(8, 12, 24, 0.8);
  color: var(--primary);
  font: 400 10px/1 "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-card__body,
.offer-card__body,
.booking-card,
.profile-card,
.about-card,
.menu-block,
.empty-panel {
  padding: 24px;
}

.event-card__meta,
.event-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--accent);
  font: 400 11px/1.3 "DM Mono", monospace;
}

.event-card__title,
.subsection-title,
.offer-card__title,
.menu-item__title,
.team-card-egc__name,
.profile-card__title {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.event-card__text,
.offer-card__text,
.menu-item__text,
.team-card-egc__text,
.about-card__text,
.profile-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.quick-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(20, 27, 48, 0.72);
}

.quick-card__icon {
  color: var(--accent);
  font: 500 20px/1 "Playfair Display", serif;
}

.quick-card__title {
  color: rgba(240, 236, 228, 0.88);
  font-size: 14px;
  font-weight: 500;
}

.banner-cta {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto 80px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: rgba(201, 169, 110, 0.05);
}

.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
}

.two-col-equal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-image {
  min-height: 260px;
  background: var(--bg-muted);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.info-list,
.policy-grid,
.link-row,
.menu-tabs,
.team-grid,
.profile-stats {
  display: grid;
  gap: 12px;
}

.hours-list,
.contact-list {
  display: grid;
  gap: 14px;
}

.hours-row,
.contact-row,
.booking-item,
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-row__label,
.contact-row__label,
.policy-card__label,
.mini-label,
.field-label,
.booking-item__meta,
.chip-badge,
.offer-badge {
  color: var(--muted);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-row__value,
.contact-row__value,
.policy-card__value,
.info-strong {
  color: var(--text);
  font-size: 13px;
}

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

.policy-card {
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.link-row {
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
}

.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: rgba(240, 236, 228, 0.82);
  font-size: 13px;
}

.menu-tabs {
  grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
  margin-bottom: 28px;
  border: 1px solid var(--border);
}

.menu-tab {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  color: var(--muted);
  font: 400 12px/1.2 "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-tab:hover {
  background: rgba(20, 27, 48, 0.7);
  color: var(--text);
}

.menu-tab:last-child {
  border-right: 0;
}

.menu-sections-egc {
  display: grid;
  gap: 24px;
}

.menu-block {
  padding: 0;
}

.menu-block__header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.menu-item {
  align-items: flex-start;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item__price {
  color: var(--primary);
  font: 500 15px/1 "DM Mono", monospace;
  white-space: nowrap;
}

.chip-badge,
.offer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(61, 140, 126, 0.3);
  color: var(--accent);
  background: rgba(61, 140, 126, 0.08);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.offer-card__body {
  padding-left: 28px;
}

.events-list {
  display: grid;
  gap: 20px;
}

.event-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
  overflow: hidden;
}

.event-row__media {
  min-height: 220px;
  background: var(--bg-muted);
}

.event-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.event-row__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-card-egc {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.team-card-egc__avatar {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--bg-muted);
}

.team-card-egc__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.team-card-egc__role {
  margin: 0 0 8px;
  color: var(--primary);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-form-shell,
.profile-access-shell {
  min-height: calc(100vh - 72px - 107px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.booking-card,
.profile-card {
  width: 100%;
}

.field-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-stack {
  display: grid;
  gap: 8px;
}

.field-label {
  display: block;
  margin-bottom: 6px;
}

.field-input,
.field-textarea,
.field-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--bg-muted);
  color: var(--text);
  outline: none;
}

.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  border-color: rgba(201, 169, 110, 0.5);
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-alert {
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid transparent;
  font-size: 13px;
}

.form-alert--error {
  color: #ffd3cc;
  border-color: rgba(192, 57, 43, 0.4);
  background: rgba(192, 57, 43, 0.08);
}

.form-alert--success {
  color: #d7f5ef;
  border-color: rgba(61, 140, 126, 0.35);
  background: rgba(61, 140, 126, 0.08);
}

.pdn-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.45;
}

.pdn-consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.pdn-consent a {
  text-decoration: underline;
}

.booking-items {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.booking-item {
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(20, 27, 48, 0.42);
  flex-direction: column;
}

.booking-item--wide {
  justify-content: flex-start;
}

.booking-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: var(--accent);
  border: 1px solid rgba(61, 140, 126, 0.3);
  background: rgba(61, 140, 126, 0.08);
  font: 400 9px/1 "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 22px;
}

.stat-box {
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: rgba(20, 27, 48, 0.42);
}

.stat-box__label {
  margin: 0 0 6px;
  color: var(--muted);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-box__value {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.empty-panel {
  text-align: center;
}

.profile-welcome {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  background: rgba(201, 169, 110, 0.04);
}

.profile-welcome__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 169, 110, 0.3);
  background: rgba(201, 169, 110, 0.08);
  color: var(--primary);
  font: 500 24px/1 "Playfair Display", serif;
}

.spacer-bottom {
  height: 80px;
}

@media (max-width: 1100px) {
  .cards-grid-3,
  .cards-grid-4,
  .facts-strip__grid,
  .two-col,
  .two-col-equal,
  .offers-grid,
  .team-grid,
  .event-row {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .guest-topbar {
    padding: 14px 20px;
  }

  .guest-nav,
  .guest-topbar__cta {
    display: none;
  }

  .guest-mobilebar {
    display: flex;
  }

  .guest-main {
    min-height: calc(100vh - 58px);
    padding-bottom: 58px;
  }

  .guest-footer__inner,
  .guest-footer__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .hero-home {
    min-height: calc(100vh - 72px);
  }

  .hero-home--text-only {
    min-height: 560px;
  }

  .hero-home__content {
    width: min(calc(100% - 32px), var(--content));
    padding-bottom: 48px;
  }

  .section-shell,
  .section-shell--narrow,
  .section-shell--form {
    width: min(calc(100% - 32px), var(--content));
  }

  .content-section,
  .content-section--tight {
    padding: 48px 0;
  }

  .content-section__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .field-grid-2,
  .profile-stats {
    grid-template-columns: 1fr;
  }

  .team-card-egc {
    flex-direction: column;
  }

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