:root {
  --bg: #f7f8f5;
  --surface: #ffffff;
  --text: #18211f;
  --muted: #65716c;
  --line: #dfe6df;
  --primary: #006d77;
  --primary-dark: #004f57;
  --accent: #f4a261;
  --success-bg: #e6f6ee;
  --success-text: #17673d;
  --warning-bg: #fff2d8;
  --warning-text: #7a4b00;
  --emergency-bg: #ffe5e5;
  --emergency-text: #8f1d1d;
  --shadow: 0 14px 36px rgba(23, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  padding-bottom: 84px;
}

main {
  display: flex;
  flex-direction: column;
}

main > #documents {
  order: 1;
}

main > #checkin {
  order: 2;
}

main > #rooms {
  order: 3;
}

main > #payment {
  order: 4;
}

main > #wifi {
  order: 5;
}

main > #kitchen {
  order: 6;
}

main > #laundry {
  order: 7;
}

main > #rules {
  order: 8;
}

main > #recycling {
  order: 9;
}

main > #local {
  order: 10;
}

main > #checkout {
  order: 11;
}

main > #faq {
  order: 12;
}

main > #contact {
  order: 13;
}

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

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

.text-link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--primary-dark);
}

.site-header {
  min-height: 100vh;
  padding-top: 67px;
  background: linear-gradient(180deg, #eef7f3 0%, var(--bg) 100%);
}

.top-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(247, 248, 245, 0.9);
  border-bottom: 1px solid rgba(223, 230, 223, 0.8);
  backdrop-filter: blur(14px);
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 20px rgba(23, 35, 31, 0.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.mobile-menu {
  position: fixed;
  top: 67px;
  right: 18px;
  left: 18px;
  z-index: 19;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 36px rgba(23, 35, 31, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 700;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: #eef4ef;
  outline: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
}

.desktop-links {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

.hero {
  display: grid;
  gap: 28px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 34px;
}

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

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.6rem, 15vw, 5.4rem);
  line-height: 0.96;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 1;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-text {
  max-width: 56ch;
  margin-top: 18px;
  font-size: 1.08rem;
}

.quick-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(23, 35, 31, 0.08);
}

.action-button.primary,
.action-button.whatsapp {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section {
  padding: 54px 0;
}

.section.tinted {
  background: #eef4ef;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.section-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(23, 35, 31, 0.08);
  font-size: 1.35rem;
}

.grid {
  display: grid;
  gap: 14px;
}

.checkin-grid .warning {
  order: -1;
}

.kitchen-grid .image-card {
  order: -1;
}

.laundry-grid .warning {
  order: -1;
}

.card,
.wifi-card,
.notice,
details,
.local-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(23, 35, 31, 0.07);
}

.card {
  padding: 18px;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-caption {
  padding: 18px;
}

.cleaning-grid {
  margin-bottom: 14px;
}

.card p + .action-button {
  margin-top: 12px;
}

.map-embed {
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4ef;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.map-embed + .action-button {
  margin-top: 12px;
}

.warning {
  background: var(--warning-bg);
  border-color: #f6cf83;
}

.warning p,
.warning span {
  color: var(--warning-text);
}

.steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.video-card {
  padding: 0;
  overflow: hidden;
}

.video-placeholder {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #1d4448, #547f76);
  color: #fff;
  text-align: center;
}

.video-placeholder p {
  color: #fff;
  font-weight: 800;
}

.play-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 1.4rem;
}

.wifi-card {
  display: grid;
  gap: 16px;
  margin-bottom: 12px;
  padding: 20px;
}

.label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wifi-card strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.35rem, 8vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0;
}

.success-message,
.notice {
  margin-bottom: 16px;
  padding: 14px 16px;
}

.success-message {
  border: 1px solid #b7e8cb;
  border-radius: 8px;
  background: var(--success-bg);
  color: var(--success-text);
  font-weight: 800;
}

.notice {
  display: grid;
  gap: 4px;
}

.document-links {
  margin-top: 14px;
}

.emergency,
.emergency-card {
  background: var(--emergency-bg);
  border-color: #ffb8b8;
}

.emergency span,
.emergency p,
.emergency-card p {
  color: var(--emergency-text);
}

.bin-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.red-lid {
  background: #b4232d;
  color: #fff;
}

.yellow-lid {
  background: #b88700;
  color: #fff;
}

.blue-lid {
  background: #1769aa;
  color: #fff;
}

.red-lid p,
.yellow-lid p,
.blue-lid p {
  color: rgba(255, 255, 255, 0.92);
}

.local-list {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.local-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px;
}

.local-item span {
  font-size: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  min-height: 58px;
  padding: 18px;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--primary);
  font-size: 1.3rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 18px 18px;
}

.contact-section {
  padding-bottom: 36px;
}

.contact-section .card .action-button {
  width: 100%;
  margin-top: 12px;
}

.bottom-nav {
  display: none;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .desktop-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100vh - 67px);
    padding-top: 46px;
  }

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

  .three-col,
  .bin-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wide {
    grid-column: span 2;
  }

  .wifi-card {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

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

@media (min-width: 1040px) {
  .section {
    padding: 72px 0;
  }

  .section-inner {
    padding: 0 24px;
  }
}
