:root {
  --bg: #faf7f2;
  --bg-card: #ffffff;
  --text: #2b2420;
  --text-muted: #6b6259;
  --accent: #c1553a;
  --accent-dark: #9c4530;
  --sage: #6f8b6f;
  --border: #e8e1d8;
  --radius: 14px;
  --shadow: 0 4px 16px rgba(43, 36, 32, 0.08);
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: none;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--border);
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #d98a5f 0%, #c1553a 55%, #8a4a3a 100%);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) blur(2px);
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-placeholder-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 2.5rem 1.25rem 1.75rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  opacity: 0.9;
  margin: 0 0 0.35rem;
}

.hero-content h1 {
  margin: 0 0 0.4rem;
  font-size: clamp(2rem, 6vw, 2.75rem);
}

.hero-content p {
  margin: 0 0 1.1rem;
  opacity: 0.95;
  max-width: 46ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}

.section:last-of-type {
  border-bottom: none;
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}

/* Quick info cards */
.quickinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.card h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.card p {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.card p.muted {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

/* WiFi card special */
.wifi-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.wifi-details p {
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
}

.copy-btn {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.copy-btn:active {
  transform: scale(0.97);
}

.copy-btn.copied {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}

.amenity {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
}

.amenity .icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 0.4rem;
}

.amenity .label {
  font-size: 0.85rem;
  font-weight: 600;
}

.amenity.highlight {
  background: #f2ece2;
  border-color: #e4d6c2;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.info-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.info-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
}

.info-list strong {
  color: var(--accent-dark);
}

.inline-whatsapp {
  color: #1f9c4c;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.inline-whatsapp:hover {
  color: #17793b;
}

/* Rules */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.rule-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
}

.rule-group h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.rule-group ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text);
}

.rule-group li {
  margin-bottom: 0.35rem;
}

.rule-group li:last-child {
  margin-bottom: 0;
}

.rule-group.emphasis {
  border-color: var(--accent);
  background: #fbeee9;
}

/* FAQ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--accent);
  flex: none;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  padding: 2rem 0 6rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--accent-dark);
  font-weight: 600;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.whatsapp-float span {
  display: none;
}

@media (min-width: 480px) {
  .whatsapp-float span {
    display: inline;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2rem 0;
  }
  .hero {
    min-height: 55vh;
  }
}
