/* Osobna strona strefy gościa — /guest.html */
body.page-guest {
  margin: 0;
  min-height: 100vh;
  background: var(--background-color--background-primary, #fbf8f1);
  color: #0c0c0c;
  font-family: Inter, system-ui, sans-serif;
}

.guest-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  border-bottom: 1px solid rgba(12, 12, 12, 0.08);
  background: #fbf8f1;
  position: sticky;
  top: 0;
  z-index: 20;
}

.guest-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.guest-page-brand img {
  height: 40px;
  width: auto;
}

.guest-page-brand span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.guest-page-back {
  font-size: 0.85rem;
  text-decoration: none;
  color: rgba(12, 12, 12, 0.75);
  white-space: nowrap;
}

.guest-page-back:hover {
  color: #0c0c0c;
}

.guest-page-main {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem) 3rem;
}

.guest-page-hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.guest-page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 7vw, 2.75rem);
  letter-spacing: 0.06em;
  margin: 0 0 0.65rem;
}

.guest-page-hero p {
  margin: 0 auto;
  max-width: 38rem;
  line-height: 1.6;
  color: rgba(12, 12, 12, 0.72);
}

body.page-guest.is-logged-in .guest-page-hero--login {
  display: none;
}

.guest-portal-wrap {
  width: 100%;
}

@media (max-width: 640px) {
  .guest-page-brand span {
    display: none;
  }
}

/* Breakfast decor */
.breakfast-decor {
  margin: 0 0 1.25rem;
}

.breakfast-gallery {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0.65rem;
}

.breakfast-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 28px rgba(12, 12, 12, 0.1);
}

@media (max-width: 520px) {
  .breakfast-gallery {
    grid-template-columns: 1fr;
  }

  .breakfast-gallery img {
    aspect-ratio: 4 / 3;
  }
}

/* Concierge — home, guide, services */
.guest-tabs {
  overflow-x: auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
}

.guest-tab {
  flex-shrink: 0;
  font-size: 0.82rem;
  padding: 0.5rem 0.85rem;
}

.concierge-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #0c0c0c 0%, #2a2520 100%);
  color: #fbf8f1;
}

.concierge-banner p {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.45;
}

.concierge-banner-btn {
  background: #fbf8f1 !important;
  color: #0c0c0c !important;
  border: none !important;
  white-space: nowrap;
}

.concierge-home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .concierge-home-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.concierge-home-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  padding: 1rem;
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.concierge-home-card:hover {
  border-color: rgba(12, 12, 12, 0.25);
  box-shadow: 0 8px 24px rgba(12, 12, 12, 0.08);
}

.concierge-home-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.concierge-home-title {
  font-weight: 600;
  font-size: 0.92rem;
}

.concierge-home-body {
  font-size: 0.78rem;
  color: rgba(12, 12, 12, 0.65);
  line-height: 1.4;
}

.concierge-quick-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.concierge-quick-link {
  border: 1px dashed rgba(12, 12, 12, 0.2);
  background: transparent;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  color: rgba(12, 12, 12, 0.75);
}

.concierge-quick-link:hover {
  border-color: #0c0c0c;
  color: #0c0c0c;
}

.concierge-guide {
  display: grid;
  gap: 0.5rem;
}

.concierge-guide-section {
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.concierge-guide-section summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  list-style: none;
}

.concierge-guide-section summary::-webkit-details-marker {
  display: none;
}

.concierge-guide-body {
  padding: 0 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(12, 12, 12, 0.78);
}

.concierge-guide-body p {
  margin: 0 0 0.5rem;
}

.concierge-category {
  margin-bottom: 1.25rem;
}

.concierge-category-title {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f7d6b;
  font-weight: 600;
}

.concierge-service {
  border: 1px solid rgba(12, 12, 12, 0.1);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.concierge-service summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  list-style: none;
}

.concierge-service summary::-webkit-details-marker {
  display: none;
}

.concierge-service-title {
  font-weight: 600;
  font-size: 0.92rem;
}

.concierge-service-hint {
  font-size: 0.75rem;
  color: #8f7d6b;
  white-space: nowrap;
}

.concierge-service-body {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(12, 12, 12, 0.06);
}

.concierge-service-desc {
  margin: 0.85rem 0;
  font-size: 0.88rem;
  color: rgba(12, 12, 12, 0.72);
  line-height: 1.5;
}

.concierge-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .concierge-form-grid {
    grid-template-columns: 1fr;
  }
}

.concierge-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.concierge-field--full {
  grid-column: 1 / -1;
}

.concierge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(12, 12, 12, 0.7);
}

.concierge-textarea {
  min-height: 4.5rem;
  resize: vertical;
}

.concierge-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.concierge-form-actions {
  margin-top: 1rem;
}

.concierge-message {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
}

.concierge-message--success {
  color: #1a6b3a;
}

.concierge-message--error {
  color: #9b2c2c;
}
