:root {
  --bg: #f5f5f5;
  --text: #0f0e0e;
  --muted: #b6b6b6;
  --brand: #27a31c;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell,
    "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  /* background: rgba(11, 11, 12, 0.7); */
  backdrop-filter: saturate(150%) blur(6px);
}
.logo {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.2px;
}
.menu-toggle {
  background: transparent;
  border: 0;
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center;
}
.menu-toggle:hover {
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  inline-size: 24px;
  block-size: 2px;
  background: var(--text);
  position: relative;
}
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  inline-size: 24px;
  block-size: 2px;
  background: var(--text);
  transform-origin: center;
}
.menu-toggle__bar::before {
  top: -7px;
}
.menu-toggle__bar::after {
  top: 7px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto auto;
  top: 56px;
  right: 1rem;
  background: #fffffffb;
  border: 1px solid #222;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}
.site-nav a:hover,
.site-nav a:focus {
  background: #e9e3df;
}
.site-nav[data-visible="true"] {
  z-index: 60;
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
    border: none;
    background: transparent;
    padding: 0;
  }
  .menu-toggle {
    display: none;
  }
}

.hero {
  display: grid;
  place-items: center;
  padding: 2rem 1rem 3rem;
}
.hero__content {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.hero__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
}
.hero__subtitle {
  color: var(--muted);
}
.hero__img {
  inline-size: min(100%, 1100px);
  block-size: auto;
  border-radius: 1rem;
  margin-block: 1rem;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
}
.cta label {
  font-size: 0.9rem;
  color: var(--muted);
  gap: 0.25rem;
  align-self: center;

}
.cta input {
  padding: 0.6rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px;
  background: #d2d2d2;
  color: var(--text);
  flex-grow: 1;
}
#wa-date{
  width: 10rem;
}

#wa-city{
  width: 10rem;
}

.btn {
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  /* background: #1b1b1c; */
  border: 1px;
}
.btn--whatsapp {
  background: var(--brand);
  color: #041b04;
  font-weight: 700;
  flex-grow: 1;
  max-width: 300px;
}

.section {
  padding: 3rem 1rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.card {
  /* background: #121214; */
  border: 1px solid #1e1e20;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 18px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.review-card {
  /* background: #121214; */
  border: 1px solid #1e1e20;
  border-radius: 1rem;
  padding: 1rem;
  min-height: 120px;
}

.stars {
  color: #f5b301;
  letter-spacing: 0.2rem;
  margin: 0.25rem 0 0.5rem;
}
.review-card p {
  margin: 0 0 0.5rem 0;
  color: var(--text);
}
.review-card span {
  color: var(--muted);
}

.section-helper {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  /* background: #111; */
  border: 1px solid #2a2a2b;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.85rem;
  z-index: 70;
}
.section-helper a {
  text-decoration: underline;
}

.site-footer {
  padding: 2rem 1rem;
  border-top: 1px solid #1e1e20;
  text-align: center;
  color: var(--muted);
}
.footer-links {
  margin-bottom: 0.5rem;
}

/* Fix the typo: set color, not columns */
.header__content p {
  color: var(--muted);
}


/* ===== Light theme tweaks for softer look (non-breaking overrides) ===== */
:root {
  --surface: #ffffff;
  --border: #e6e6e6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.08);
}

.site-header {
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid var(--border);
}

.site-nav {
  border-color: var(--border);
  background: #fffffffa;
}

.card, .review-card {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.section {
  background: transparent;
}

.site-footer {
  border-top: 1px solid var(--border);
}

/* ===== Utility ===== */
.muted { color: var(--muted); }
.pill {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}
.pill.is-active, .pill:focus {
  outline: none;
  border-color: #cfd0d2;
  box-shadow: var(--shadow-sm);
}

/* ===== Gallery ===== */
.gallery-hero {
  padding-bottom: 0;
  text-align: center;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.gallery-card img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(180deg,#f4f4f4,#ececec);
}

.gallery-card figcaption {
  padding: .6rem .8rem;
  color: var(--muted);
  font-size: .95rem;
  border-top: 1px solid var(--border);
}

/* 3 cols (≥ 640px), 4 cols (≥ 980px) */
@media (min-width: 640px) {
  .gallery-card { flex-basis: calc(33.333% - 12px); max-width: calc(33.333% - 12px);}
}
@media (min-width: 980px) {
  .gallery-card { flex-basis: calc(25% - 12px); max-width: calc(25% - 12px);}
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: grid;
  place-items: center;
  z-index: 1000;
  padding: 1.5rem;
}

#lightbox .lightbox__inner {
  background: #000;
  border-radius: .75rem;
  max-inline-size: min(100%, 1100px);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
#lightbox img {
  display: block;
  max-inline-size: 100%;
  height: auto;
}
#lightbox .lightbox__caption {
  color: #fff;
  padding: .75rem 1rem;
  font-size: .95rem;
  opacity: .9;
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Hide helper */
.hidden { display: none !important; }
