/* MansÃ£o do Lago â€” Design System (Static Site) */
:root {
  --green-deep: #0d3b2e;
  --green-accent: #1a4d3a;
  --sand: #f8f5f0;
  --sand-dark: #e5e0d5;
  --stone: #5a5a5a;
  --ink: #2c2c2c;
  --white: #ffffff;
  --header-h: 4.5rem;
  --sidebar-w: 17.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--sand);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.heading-serif {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

/* â€”â€” Buttons â€”â€” */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--green-deep);
  color: white;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--green-accent);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--green-deep);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--green-deep);
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--green-deep);
  color: white;
}

.btn-ghost-light {
  border-color: white;
  color: white;
}

.btn-ghost-light:hover {
  background: white;
  color: var(--green-deep);
}

/* â€”â€” Layout â€”â€” */
.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-label {
  color: var(--green-deep);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* â€”â€” Layout shell: sidebar + frame â€”â€” */
.has-sidebar {
  min-height: 100vh;
}

.site-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* â€”â€” Left sidebar navigation â€”â€” */
.site-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 70;
  width: min(var(--sidebar-w), 88vw);
  background: var(--green-deep);
  color: var(--sand);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.6rem 1.75rem;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
}

.site-sidebar.is-open {
  transform: translateX(0);
}

.site-sidebar__brand {
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(248, 245, 240, 0.15);
}

.site-logo {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  text-decoration: none;
  line-height: 1.15;
}

.site-logo--sidebar {
  display: block;
  color: var(--sand);
  font-size: 1.85rem;
  letter-spacing: -0.035em;
}

.site-logo--sidebar span {
  display: block;
}

.site-sidebar__tag {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 245, 240, 0.62);
  font-weight: 500;
}

/* â€”â€” Language switcher PT / EN / ES â€”â€” */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1rem;
  padding: 0.2rem;
  border-radius: 9999px;
  background: rgba(248, 245, 240, 0.1);
  border: 1px solid rgba(248, 245, 240, 0.18);
}

.site-header__right .lang-switch {
  margin-top: 0;
  background: rgba(13, 59, 46, 0.06);
  border-color: var(--sand-dark);
}

.lang-switch__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: rgba(248, 245, 240, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-header__right .lang-switch__btn {
  color: var(--stone);
}

.lang-switch__btn:hover {
  color: var(--sand);
  background: rgba(248, 245, 240, 0.12);
}

.site-header__right .lang-switch__btn:hover {
  color: var(--green-deep);
  background: rgba(13, 59, 46, 0.08);
}

.lang-switch__btn.is-active {
  background: var(--sand);
  color: var(--green-deep);
}

.site-header__right .lang-switch__btn.is-active {
  background: var(--green-deep);
  color: var(--sand);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  overflow-y: auto;
}

.sidebar-nav a {
  display: block;
  text-decoration: none;
  color: rgba(248, 245, 240, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.7rem 0.85rem;
  border-radius: 2px;
  transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a[aria-current="page"] {
  color: var(--sand);
  background: rgba(248, 245, 240, 0.1);
}

.sidebar-nav a[aria-current="page"] {
  box-shadow: inset 2px 0 0 var(--sand);
}

.site-sidebar__bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 245, 240, 0.15);
}

.site-sidebar__bottom .btn-primary {
  width: 100%;
  background: var(--sand);
  color: var(--green-deep);
}

.site-sidebar__bottom .btn-primary:hover {
  background: #fff;
  color: var(--green-deep);
}

.site-sidebar__meta {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  color: rgba(248, 245, 240, 0.55);
  text-align: center;
  line-height: 1.4;
}

.site-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(13, 20, 16, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
}

.site-sidebar-backdrop.is-visible {
  display: block;
}

body.sidebar-open {
  overflow: hidden;
}

/* â€”â€” Top bar (always available; full nav from tablet up) â€”â€” */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: rgba(248, 245, 240, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
}

.site-header__inner {
  max-width: none;
  margin: 0;
  padding: 0.65rem 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .site-logo {
  font-size: 1.45rem;
  flex-shrink: 0;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.15s ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-deep);
}

.site-header__cta {
  display: none;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-nav {
  display: none !important;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-deep);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet+: restore horizontal top menu */
@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .site-header__cta {
    display: inline-flex;
  }
}

/* Desktop: persistent sidebar + top menu together */
@media (min-width: 1024px) {
  .site-sidebar {
    transform: translateX(0);
    box-shadow: none;
    border-right: 1px solid rgba(248, 245, 240, 0.08);
  }

  .site-frame {
    margin-left: var(--sidebar-w);
  }

  .site-header {
    display: block;
  }

  /* Logo lives large in sidebar; top bar focuses on links + CTA */
  .site-header .site-logo {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-sidebar-backdrop {
    display: none !important;
  }

  body.sidebar-open {
    overflow: auto;
  }

  .site-logo--sidebar {
    font-size: 2rem;
  }

  .site-nav {
    font-size: 0.84rem;
    gap: 0.35rem 1.35rem;
  }
}

/* â€”â€” House story / facts â€”â€” */
.story-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0 0;
}

@media (min-width: 640px) {
  .story-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .story-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.story-fact {
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  padding: 1.15rem 1rem;
  text-align: center;
}

.story-fact__value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1.1;
  display: block;
}

.story-fact__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

/* â€”â€” Home hero: readable panel over bright photos â€”â€” */
.home-hero {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 20, 16, 0.55) 0%,
    rgba(13, 20, 16, 0.15) 42%,
    rgba(13, 20, 16, 0.2) 100%
  );
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem 1.25rem 2.5rem;
}

@media (min-width: 768px) {
  .home-hero {
    align-items: center;
    justify-content: flex-start;
  }

  .home-hero__content {
    padding: 3rem 3.5rem 4rem;
    max-width: 40rem;
  }
}

.hero-panel {
  background: rgba(248, 245, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  padding: 1.75rem 1.5rem 1.85rem;
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .hero-panel {
    padding: 2.35rem 2.5rem 2.5rem;
  }
}

.hero-panel h1 {
  color: var(--green-deep);
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 1rem;
}

.hero-panel .hero-lead {
  color: #3a3a3a;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

.hero-panel .hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .hero-panel .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.hero-panel .btn-secondary {
  background: transparent;
}

/* â€”â€” Footer â€”â€” */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--sand-dark);
  padding: 3.5rem 0 2rem;
}

.site-footer__grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 1rem;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
}

.site-footer p {
  color: var(--stone);
  font-size: 0.9rem;
  margin: 0.5rem 0 0;
  max-width: 22rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--stone);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--green-deep);
}

.site-footer__bottom {
  max-width: 80rem;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid var(--sand-dark);
  font-size: 0.8rem;
  color: var(--stone);
  text-align: center;
}

/* â€”â€” WhatsApp float â€”â€” */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 55;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* â€”â€” Cards / media â€”â€” */
.option-card {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.2s ease;
}

.option-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.06);
}

.media-card {
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.ambiente-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .ambiente-row {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }

  .ambiente-row--reverse {
    direction: rtl;
  }

  .ambiente-row--reverse > * {
    direction: ltr;
  }
}

.ambiente-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}

/* â€”â€” Page hero (inner pages) â€”â€” */
.page-hero {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 1023px) {
  .page-hero {
    padding-top: 1.5rem;
  }

  .page-hero.pt-28,
  .page-hero.section {
    padding-top: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 2.5rem;
  }
}

.page-hero--image {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  color: white;
}

.page-hero--image .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--image .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--image .page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15)
  );
}

.page-hero--image .page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  width: 100%;
}

/* â€”â€” Gallery â€”â€” */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  appearance: none;
  border: 1px solid var(--sand-dark);
  background: white;
  color: var(--stone);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
}

.gallery-section {
  margin-bottom: 3.5rem;
}

.gallery-section[hidden] {
  display: none;
}

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

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

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

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  background: var(--sand-dark);
  border: none;
  padding: 0;
  width: 100%;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--wide img {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--wide img {
    aspect-ratio: 16 / 9;
  }
}

/* â€”â€” Lightbox â€”â€” */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 20, 16, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: min(96vw, 1200px);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  text-align: center;
  max-width: 90vw;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

body.lightbox-open {
  overflow: hidden;
}

/* â€”â€” Forms â€”â€” */
.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--sand-dark);
  background: white;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-family: inherit;
  border-radius: 2px;
  color: var(--ink);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--green-deep);
  outline-offset: 1px;
}

/* â€”â€” Video placeholders (future media) â€”â€” */
.video-slot {
  border-radius: 2px;
  overflow: hidden;
  background: #0d1410;
  border: 1px solid var(--sand-dark);
}

.video-slot video {
  display: block;
  width: 100%;
  max-height: 70vh;
  background: #000;
}

.video-slot__caption {
  margin: 0;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--stone);
  background: white;
}

.video-slot__placeholder {
  min-height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.video-slot__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.25)
  );
}

.video-slot__placeholder > * {
  position: relative;
  z-index: 1;
}

.video-slot__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.video-slot__placeholder strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.video-slot__placeholder p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 28rem;
}

.use-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .use-list {
    grid-template-columns: 1fr 1fr;
  }
}

.use-list li {
  background: white;
  border: 1px solid var(--sand-dark);
  padding: 1rem 1.15rem;
  border-radius: 2px;
  font-size: 0.95rem;
  color: #3a3a3a;
}

.use-list li strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  color: var(--green-deep);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* â€”â€” FAQ accordion â€”â€” */
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--sand-dark);
  background: transparent;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--green-deep);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "âˆ’";
}

.faq-item .faq-answer {
  padding: 0 0 1.35rem;
  color: #3a3a3a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item .faq-answer p + p {
  margin-top: 0.75rem;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem;
  background: white;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
  height: 100%;
}

.contact-channel:hover {
  border-color: var(--green-deep);
  transform: translateY(-2px);
}

.contact-channel__label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}

.contact-channel__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--ink);
}

.contact-channel__meta {
  font-size: 0.875rem;
  color: var(--stone);
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #e8f0ec;
  border: 1px solid var(--green-deep);
  color: var(--green-deep);
  border-radius: 2px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

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

@media (min-width: 768px) {
  .leisure-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.leisure-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.leisure-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.leisure-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  color: white;
  font-size: 0.8rem;
}

/* â€”â€” Utilities â€”â€” */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.prose-calm p {
  color: #3a3a3a;
  font-size: 1.05rem;
  max-width: 40rem;
}

.prose-calm p + p {
  margin-top: 1rem;
}

/* —— Surroundings / Entorno page —— */
.place-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .place-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .place-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.place-card {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.place-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(13, 59, 46, 0.1);
}
.place-card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e8e4dc;
}
.place-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.place-card:hover .place-card__media img {
  transform: scale(1.04);
}
.place-card__dist {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(13, 59, 46, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.place-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.place-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.place-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.place-card__text {
  font-size: 0.92rem;
  color: var(--stone);
  margin: 0;
  flex: 1;
}
.place-feature {
  display: grid;
  gap: 0;
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .place-feature {
    grid-template-columns: 1.15fr 1fr;
    min-height: 22rem;
  }
  .place-feature--flip {
    grid-template-columns: 1fr 1.15fr;
  }
  .place-feature--flip .place-feature__media {
    order: 2;
  }
}
.place-feature__media {
  position: relative;
  min-height: 16rem;
}
.place-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.place-feature__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .place-feature__body {
    padding: 2.5rem 2.75rem;
  }
}
.place-feature__dist {
  display: inline-flex;
  align-self: flex-start;
  background: var(--sand);
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.place-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.place-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1px solid var(--sand-dark);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink);
}
.place-chip strong {
  color: var(--green-deep);
  font-weight: 600;
}
.surround-stat {
  text-align: center;
  padding: 1rem;
}
.surround-stat__value {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.surround-stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* —— Host profile (Cintia) —— */
.host-profile {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--sand);
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  overflow: hidden;
  padding: 0;
}
@media (min-width: 768px) {
  .host-profile {
    grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
    gap: 0;
  }
}
.host-profile__media {
  position: relative;
  background: #e0dbd2;
  min-height: 280px;
}
.host-profile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}
@media (min-width: 768px) {
  .host-profile__media {
    min-height: 100%;
  }
  .host-profile__media img {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }
}
.host-profile__body {
  padding: 1.75rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .host-profile__body {
    padding: 2.5rem 2.75rem 2.75rem;
  }
}
.host-profile__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 0.35rem;
}
.host-profile__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green-deep);
  margin: 0 0 0.5rem;
  line-height: 1.1;
  font-weight: 500;
}
.host-profile__lead {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 1.25rem;
}
.host-profile__text p {
  margin: 0 0 0.85rem;
  color: #3a3a3a;
  font-size: 0.98rem;
}
.host-profile__text p:last-child {
  margin-bottom: 0;
}
.host-profile__langs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1.25rem 0 0;
}
.host-profile__langs li {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--sand-dark);
  background: #fff;
  color: var(--green-deep);
  font-weight: 500;
}
.host-profile__quote {
  margin: 1.5rem 0 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.4;
}
.host-profile--compact .host-profile__media img {
  aspect-ratio: 1;
  max-height: 280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .host-profile--compact {
    grid-template-columns: 220px 1fr;
  }
  .host-profile--compact .host-profile__media {
    min-height: 220px;
  }
  .host-profile--compact .host-profile__media img {
    max-height: none;
    aspect-ratio: auto;
  }
  .host-profile--compact .host-profile__body {
    padding: 1.75rem 2rem;
  }
}

/* —— Availability calendar —— */
.av-cal {
  background: #fff;
  border: 1px solid var(--sand-dark);
  border-radius: 2px;
  padding: 1.25rem 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.av-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.av-cal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  color: var(--green-deep);
  margin: 0;
  text-transform: capitalize;
}
.av-cal__nav {
  display: flex;
  gap: 0.4rem;
}
.av-cal__nav button {
  appearance: none;
  border: 1px solid var(--sand-dark);
  background: var(--sand);
  color: var(--green-deep);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.av-cal__nav button:hover {
  background: #fff;
  border-color: var(--green-deep);
}
.av-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.av-cal__dow {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.35rem 0;
}
.av-cal__day {
  appearance: none;
  border: 1px solid transparent;
  background: #f3f0ea;
  color: var(--ink);
  aspect-ratio: 1;
  border-radius: 2px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.av-cal__day.is-empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}
.av-cal__day.is-free:hover {
  border-color: var(--green-deep);
  background: #e7efe9;
}
.av-cal__day.is-busy {
  background: #e8e4dc;
  color: #9a9a9a;
  text-decoration: line-through;
  cursor: not-allowed;
}
.av-cal__day.is-past {
  background: transparent;
  color: #c0bbb3;
  cursor: not-allowed;
}
.av-cal__day.is-start,
.av-cal__day.is-end {
  background: var(--green-deep);
  color: #fff;
}
.av-cal__day.is-in-range {
  background: #c5d9ce;
  color: var(--green-deep);
}
.av-cal__meta {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--stone);
}
.av-cal__meta.is-error {
  color: #8b3a3a;
}
.av-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--stone);
}
.av-cal__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.av-cal__swatch {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 2px;
  display: inline-block;
}
.av-cal__swatch--free { background: #f3f0ea; border: 1px solid #d5d0c6; }
.av-cal__swatch--busy { background: #e8e4dc; }
.av-cal__swatch--sel { background: var(--green-deep); }
.av-cal__note {
  font-size: 0.78rem;
  color: var(--stone);
  margin: 0.75rem 0 0;
  line-height: 1.45;
}
.av-cal__range {
  font-size: 0.9rem;
  color: var(--green-deep);
  font-weight: 500;
  margin: 0.5rem 0 0;
  min-height: 1.4em;
}
