:root {
  color-scheme: light;
  --ink: #263026;
  --muted: #697369;
  --paper: #fbfbf7;
  --soft: #eef1e9;
  --line: #dfe4d8;
  --brand: #54705a;
  --brand-dark: #314938;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.page {
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
  position: relative;
}

.audio-control {
  position: fixed;
  z-index: 20;
  top: 14px;
  right: 14px;
}

.audio-control audio {
  display: none;
}

.audio-button {
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(38, 48, 38, 0.72);
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.audio-button.is-playing {
  background: rgba(84, 112, 90, 0.82);
}

.hero {
  position: relative;
  overflow: visible;
  background: #fff;
}

.hero__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #fff;
}

.hero__placeholder {
  height: 520px;
  background:
    linear-gradient(135deg, rgba(84, 112, 90, 0.24), rgba(238, 241, 233, 0.9)),
    var(--soft);
}

.hotel-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(38, 48, 38, 0.18);
  object-fit: contain;
  padding: 6px;
}

.hero__shade {
  display: none;
}

.hero__content {
  padding: 22px 24px 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--brand-dark);
  font-size: 2.1rem;
  line-height: 1.02;
}

h2 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 1.72rem;
  line-height: 1.12;
}
.action h2 {
  font-size: 1.42rem;
}

.location,
.section p {
  color: var(--muted);
}

.hero__tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
}

.section {
  padding: 32px 24px;
  border-top: 1px solid var(--line);
}

.greeting {
  margin-top: 0;
  font-weight: 700;
}

.section-title {
  margin-bottom: 18px;
}

.slideshow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.slide {
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  margin: 0;
}

.slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.empty-gallery {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.button--primary {
  background: var(--brand-dark);
  color: #fff;
}

.button--secondary {
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(38, 48, 38, 0.64);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}

.modal-overlay[hidden] {
  display: none;
}

.modal-dialog {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px 24px;
  position: relative;
  animation: modal-up 0.2s ease-out;
}

@keyframes modal-up {
  from { transform: translateY(32px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.modal-title {
  margin: 0 0 4px;
  font-size: 1.36rem;
}

.modal-sub {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.modal-contacts {
  display: grid;
  gap: 10px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s, border-color 0.15s;
}

.contact-card:hover,
.contact-card:focus {
  background: var(--soft);
  border-color: var(--brand);
}

.contact-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-name {
  font-weight: 700;
  font-size: 0.98rem;
}

.contact-badge {
  font-size: 0.78rem;
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 760px) {
  .modal-overlay {
    align-items: center;
  }
}

@media (min-width: 760px) {
  body {
    background: var(--soft);
  }

  .page {
    box-shadow: 0 24px 80px rgba(38, 48, 38, 0.12);
  }
}
