/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette */
  --bg:         #F6F5F2;
  --bg-alt:     #FAFAF8;
  --beige-l:    #F8F1E4;
  --sage:       #8FA77A;
  --sage-d:     #7A9468;
  --beige:      #EFE3CF;
  --honey:      #D6A76C;
  --text:       #3A3A3A;
  --text-m:     #7C786E;
  --footer-bg:  #2C3626;
  --wa:         #25D366;

  /* Glassmorphism */
  --glass-bg:     rgba(250, 249, 247, 0.80);
  --glass-bg-l:   rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 8px 40px rgba(60, 55, 48, 0.10);
  --glass-blur:   blur(28px);
  --glass-blur-l: blur(18px);

  /* Radii */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-pill: 100px;

  /* Spacing */
  --section-py: clamp(72px, 10vw, 120px);
  --gap:        clamp(16px, 2.5vw, 28px);
}


/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.section {
  padding-block: var(--section-py);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.section-h {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 12px;
}
.body-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-m);
  margin-bottom: 1.1em;
}


/* ============================================================
   GLASS UTILITIES
   ============================================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  box-shadow: var(--glass-shadow);
}
.glass-light {
  background: var(--glass-bg-l);
  backdrop-filter: var(--glass-blur-l);
  -webkit-backdrop-filter: var(--glass-blur-l);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-sm);
  box-shadow: 0 4px 20px rgba(60, 55, 48, 0.07);
}


/* ============================================================
   LABEL UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(143, 167, 122, 0.14);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--sage-d);
  background: rgba(143, 167, 122, 0.16);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.reveal--right {
  transform: translateX(24px);
}
.revealed {
  opacity: 1;
  transform: none;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-d);
  border-color: var(--sage-d);
  box-shadow: 0 4px 18px rgba(143, 167, 122, 0.38);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.btn-wa:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(58, 58, 58, 0.22);
}
.btn-outline:hover {
  background: rgba(58, 58, 58, 0.06);
  border-color: rgba(58, 58, 58, 0.38);
}
.btn-sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn-lg  { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; }


/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-block: 16px;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.header.scrolled {
  background: rgba(246, 245, 242, 0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(60, 55, 48, 0.08);
  padding-block: 10px;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo__img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.2s, color 0.2s;
}
.nav__link:hover {
  background: rgba(143, 167, 122, 0.12);
  color: var(--sage-d);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
  border-radius: 10px;
  transition: background 0.2s;
}
.burger:hover { background: rgba(58, 58, 58, 0.07); }
.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(246, 245, 242, 0.52) 0%,
    rgba(239, 227, 207, 0.22) 55%,
    rgba(0, 0, 0, 0.10) 100%
  );
}
.hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 120px 80px;
  display: flex;
  align-items: center;
}
.hero__card {
  max-width: 520px;
  padding: clamp(28px, 5vw, 48px);
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.hero__title em {
  font-style: normal;
  color: var(--sage);
}
.hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-m);
  margin-bottom: 28px;
}
.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(58, 58, 58, 0.10);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat strong {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero__stat span {
  font-size: 0.8125rem;
  color: var(--text-m);
  font-weight: 500;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(250, 249, 247, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 50%;
  color: var(--text-m);
  animation: scroll-bounce 2.2s ease infinite;
  transition: background 0.2s;
}
.hero__scroll:hover { background: rgba(250, 249, 247, 0.92); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}


/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-alt); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}
.about__text {
  display: flex;
  flex-direction: column;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-m);
  line-height: 1.55;
}
.check-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(143, 167, 122, 0.14);
  border-radius: 50%;
  color: var(--sage);
  margin-top: 1px;
}
.about__visual { position: relative; }
.about__img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(60, 55, 48, 0.14);
  aspect-ratio: 4/5;
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about__img-frame:hover .about__img { transform: scale(1.04); }

.about__pill {
  position: absolute;
  left: -24px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  min-width: 200px;
}
.about__pill--2 {
  bottom: auto;
  top: 44px;
  left: auto;
  right: -20px;
}
.about__pill strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.about__pill span {
  font-size: 0.8125rem;
  color: var(--text-m);
}


/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.s-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.s-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(60, 55, 48, 0.16);
}
.s-card--accent {
  position: relative;
  background: rgba(239, 227, 207, 0.84);
}
.s-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--honey);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
}
.s-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.s-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.s-card:hover .s-card__photo img { transform: scale(1.06); }
.s-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-card__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.s-card__body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-m);
  flex: 1;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.pill-list li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sage-d);
  background: rgba(143, 167, 122, 0.13);
  padding: 4px 13px;
  border-radius: var(--r-pill);
}


/* ============================================================
   ADVANTAGES
   ============================================================ */
.advantages { background: var(--beige-l); }
.adv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.adv-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(60, 55, 48, 0.13);
}
.adv-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(143, 167, 122, 0.14);
  border-radius: 14px;
  color: var(--sage);
}
.adv-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
}
.adv-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-m);
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-alt); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 10px;
}
.g-item {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
}
.g-item--tall { grid-row: span 2; }
.g-item--wide { grid-column: span 2; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-item__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 48, 40, 0.38);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover .g-item__hover { opacity: 1; }


/* ============================================================
   BOOKING
   ============================================================ */
.booking { background: var(--bg); }
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}
.booking__form-wrap {
  display: flex;
  flex-direction: column;
}
.booking__form { margin-top: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row .form-group { margin-bottom: 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}
.req { color: var(--sage); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px solid rgba(58, 58, 58, 0.15);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(143, 167, 122, 0.18);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D9614D;
  box-shadow: 0 0 0 3px rgba(217, 97, 77, 0.14);
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-note {
  font-size: 0.8125rem;
  color: var(--text-m);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
}
.form-success__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(143, 167, 122, 0.14);
  border-radius: 50%;
}
.form-success h3 { font-size: 1.375rem; font-weight: 700; }
.form-success p   { color: var(--text-m); }

/* Contact card */
.contact-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.c-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.c-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(143, 167, 122, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
}
.c-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}
.c-item span,
.c-item a {
  font-size: 0.9rem;
  color: var(--text-m);
  line-height: 1.55;
}
.c-item a:hover { color: var(--sage); }
.c-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(58, 58, 58, 0.08);
}
.c-actions .btn { flex: 1; }

/* Conditions card */
.cond-card {
  margin-top: 16px;
  padding: 20px 24px;
}
.cond-card h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.cond-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cond-card li {
  font-size: 0.9rem;
  color: var(--text-m);
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.cond-card li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
  font-size: 1.2em;
}


/* ============================================================
   REVIEWS (Video)
   ============================================================ */
.reviews { background: var(--beige-l); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.yt-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(60, 55, 48, 0.14);
}
.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--r-md);
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.yt-card:hover .yt-thumb img { transform: scale(1.04); }
.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 54, 38, 0.42);
  transition: background 0.25s;
}
.yt-play:hover { background: rgba(44, 54, 38, 0.62); }
.yt-play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.50);
  border-radius: 50%;
}
.yt-play svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  margin-left: 3px;
}
.yt-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: var(--r-md);
  display: block;
}

/* ============================================================
   MAP
   ============================================================ */
.map-wrap {
  height: 400px;
  overflow: hidden;
}
#map2gis {
  width: 100%;
  height: 100%;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.9375rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: 60px 40px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.footer__brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__col a,
.footer__col p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.55;
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(255, 255, 255, 0.88); }
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.14);
  color: #4CD87A !important;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-weight: 600;
  margin-top: 4px;
  width: fit-content;
  transition: background 0.2s !important;
}
.footer__wa:hover { background: rgba(37, 211, 102, 0.24) !important; }
.footer__dev {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}
.footer__dev a {
  color: rgba(255, 255, 255, 0.55) !important;
  transition: color 0.2s !important;
}
.footer__dev a:hover {
  color: rgba(255, 255, 255, 0.88) !important;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.32);
  text-align: center;
}


/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--wa);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.44);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.wa-fab:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.56);
  transform: translateY(-2px);
}
.wa-fab__label { white-space: nowrap; }


/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 12, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox__img {
  max-width: min(90vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-sm);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transition: opacity 0.25s;
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border-radius: 50%;
  transition: background 0.2s;
}
.lightbox__nav:hover  { background: rgba(255, 255, 255, 0.20); }
.lightbox__nav--prev  { left: 24px; }
.lightbox__nav--next  { right: 24px; }


/* ============================================================
   RESPONSIVE — TABLET ≤1024px
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: 1fr 1fr; }
  .s-card:last-child { grid-column: span 2; }
  .adv__grid       { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid   { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid   { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .about__pill    { left: -12px; }
  .about__pill--2 { right: -10px; }
}


/* ============================================================
   RESPONSIVE — MOBILE ≤768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-py: clamp(56px, 10vw, 80px); }

  /* Header */
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 40px 32px;
    background: rgba(246, 245, 242, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: -8px 0 40px rgba(60, 55, 48, 0.14);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav__link { font-size: 1.125rem; padding: 12px 0; width: 100%; }
  .nav .btn  { margin-top: 12px; }

  /* Hero */
  .hero__card { max-width: 100%; }
  .hero__wrap { padding-block: 96px 56px; }

  /* About */
  .about__inner   { grid-template-columns: 1fr; }
  .about__visual  { order: -1; }
  .about__img-frame { aspect-ratio: 16/9; }
  .about__pill    { left: 12px;  bottom: -20px; }
  .about__pill--2 { top: -20px; right: 12px; left: auto; bottom: auto; }

  /* Services */
  .services__grid    { grid-template-columns: 1fr; }
  .s-card:last-child { grid-column: span 1; }

  /* Gallery */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item--wide  { grid-column: span 2; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; }

  /* Booking */
  .booking__inner { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  /* WA fab — icon only */
  .wa-fab__label { display: none; }
  .wa-fab { padding: 16px; border-radius: 50%; }

  /* Lightbox */
  .lightbox__nav { display: none; }
}


/* ============================================================
   RESPONSIVE — SMALL ≤480px
   ============================================================ */
@media (max-width: 480px) {
  .adv__grid { grid-template-columns: 1fr; }

  .hero__btns { flex-direction: column; }
  .hero__btns .btn { width: 100%; }

  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-item--wide,
  .g-item--tall { grid-column: span 1; grid-row: span 1; }
}
