:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #f3ede3;
  --text: #15372e;
  --muted: #5f6f69;
  --brand: #0a4a3b;
  --brand-dark: #08392e;
  --brand-soft: #e7efe9;
  --accent: #c8a56a;
  --accent-strong: #a88549;
  --line: rgba(var(--text-rgb), 0.12);
  --shadow: 0 24px 70px rgba(var(--brand-dark-rgb), 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.18), transparent 34rem),
    linear-gradient(180deg, #fcfbf7 0%, var(--bg) 45%, #f1ece2 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  padding: 16px 22px;
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 104px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(252, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(var(--brand-dark-rgb), 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: fit-content;
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  border-radius: 20px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  box-shadow: 0 16px 36px rgba(var(--brand-dark-rgb), 0.12);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  display: block;
  line-height: 1;
  font-size: 1.32rem;
  letter-spacing: -0.035em;
  color: var(--brand-dark);
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.055);
  border: 1px solid rgba(var(--brand-rgb), 0.08);
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(var(--text-rgb), 0.84);
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-links a:hover {
  background: rgba(var(--brand-rgb), 0.09);
  color: var(--brand-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--surface-soft);
  cursor: pointer;
  justify-self: end;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--brand-dark);
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--button-text);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(var(--brand-dark-rgb), 0.24);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(var(--brand-dark-rgb), 0.3);
}

.btn-small { padding: 10px 16px !important; color: var(--button-text) !important; }

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: none;
}

.hero {
  min-height: var(--hero-height-desktop, 92vh);
  padding: 190px 24px 70px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background-color: var(--brand-dark);
}


.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--hero-fit-desktop, cover);
  object-position: var(--hero-position-desktop, center center);
  filter: saturate(1.02);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(var(--brand-dark-rgb), 0.82),
      rgba(var(--brand-rgb), 0.48),
      rgba(var(--brand-rgb), 0.16)
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(var(--brand-dark-rgb), 0) 0%,
    rgba(var(--brand-dark-rgb), 0.48) 35%,
    var(--bg) 100%
  );
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 34%;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ead9bb;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 70px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.hero-card strong { display: block; margin: 10px 0 6px; font-size: 1.15rem; }
.hero-card p { margin: 0; color: rgba(255, 255, 255, 0.85); }

.rating {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff;
  font-weight: 850;
}

.section { max-width: var(--max); margin: 0 auto; padding: 92px 24px; }

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.intro .eyebrow,
.section-heading .eyebrow,
.split-content .eyebrow,
.contact-panel .eyebrow {
  color: var(--accent-strong);
}

.intro-text {
  color: var(--muted);
  font-size: 1.14rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.room-slider {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: var(--brand-soft);
}

.room-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.room-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.room-card:hover .room-slide.is-active {
  transform: scale(1.035);
}

.room-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
  background: var(--brand-soft);
}

.room-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(var(--brand-dark-rgb), 0.18);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.room-slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.room-slider-btn.prev { left: 14px; }
.room-slider-btn.next { right: 14px; }

.room-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(8, 57, 46, 0.28);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.room-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.room-slider-dots button.is-active {
  width: 22px;
  background: #fff;
}
.room-body { padding: 24px; }
.room-body h3 { margin: 0 0 8px; font-size: 1.45rem; letter-spacing: -0.025em; }
.room-body p { margin: 0 0 18px; color: var(--muted); }
.room-body span { color: var(--brand); font-weight: 850; }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.split-slider {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--brand-soft);
}

.split-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.split-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.split-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.split-slider:hover .split-slide.is-active {
  transform: scale(1.025);
}

.split-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 850;
  background: var(--brand-soft);
}

.split-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 30px rgba(var(--brand-dark-rgb), 0.18);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.split-slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.split-slider-btn.prev { left: 16px; }
.split-slider-btn.next { right: 16px; }

.split-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 57, 46, 0.30);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.split-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.split-slider-dots button.is-active {
  width: 24px;
  background: #fff;
}

.split-content {
  padding: 52px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(var(--accent-rgb), 0.16);
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.feature-content span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 14px;
  background: var(--brand-soft);
}

.feature-content strong { display: block; font-size: 1.03rem; }
.feature-content p { margin: 7px 0 0; color: var(--muted); font-size: 0.95rem; }


.service-slider {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: var(--brand-soft);
}

.service-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.service-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.service-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.feature-card:hover .service-slide.is-active {
  transform: scale(1.035);
}

.service-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 2.4rem;
  background: var(--brand-soft);
}

.service-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(var(--brand-dark-rgb), 0.16);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-slider-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: #fff;
}

.service-slider-btn.prev { left: 10px; }
.service-slider-btn.next { right: 10px; }

.service-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(8, 57, 46, 0.28);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.service-slider-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.service-slider-dots button.is-active {
  width: 20px;
  background: #fff;
}

.feature-content {
  padding: 20px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(var(--brand-dark-rgb), 0.11);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) { grid-column: span 5; }

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3) { grid-column: span 7; }

.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) { grid-column: span 6; }

.map-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 10px solid #fff;
}

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

.map-link {
  display: block;
  padding: 14px 18px;
  color: var(--brand);
  background: var(--surface);
  font-weight: 850;
  text-align: right;
  border-top: 1px solid var(--line);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(var(--brand-dark-rgb), 0.94), rgba(var(--brand-rgb), 0.9)),
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.2), transparent 20rem);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-panel p { color: rgba(255, 255, 255, 0.84); }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }

.contact-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-list strong { color: rgba(255, 255, 255, 0.7); }
.contact-list a { text-decoration: underline; text-underline-offset: 4px; }

.contact-form {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--muted);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fffcf8;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.11);
}

.contact-form .btn { width: 100%; margin-top: 6px; }
.contact-form small { display: block; margin-top: 14px; color: var(--muted); }

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #1fa855;
  font-weight: 900;
  font-size: 1.6rem;
  box-shadow: 0 18px 40px rgba(31, 168, 85, 0.34);
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p { margin: 0; }
.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.footer a { color: var(--brand); font-weight: 750; }

@media (max-width: 980px) {
  .hero { min-height: 86vh; }
  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 42px auto 0;
    width: min(var(--max), calc(100% - 48px));
  }
  .intro, .split, .contact-panel { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .split-slider { height: 440px; }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: auto auto;
  }

  .nav-links {
    position: absolute;
    top: 126px;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(252, 250, 246, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .nav-links a {
    padding: 13px 15px;
  }
}

@media (max-width: 760px) {
  .site-header { padding: 10px; }

  .nav {
    min-height: 86px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px;
    border-radius: 24px;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    padding: 5px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 104px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(252, 250, 246, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 15px; }
  .hero {
    min-height: auto;
    padding: var(--hero-height-mobile, 430px) 18px 46px;
    align-items: end;
  }

  .hero-bg {
    height: var(--hero-height-mobile, 430px);
    object-fit: var(--hero-fit-mobile, contain);
    object-position: var(--hero-position-mobile, center top);
    background: var(--surface);
  }

  .hero::before {
    height: var(--hero-height-mobile, 430px);
    background:
      linear-gradient(
        180deg,
        rgba(var(--brand-dark-rgb), 0.02) 0%,
        rgba(var(--brand-dark-rgb), 0.12) 45%,
        rgba(var(--brand-dark-rgb), 0.72) 100%
      );
  }

  .hero::after {
    height: 220px;
    background: linear-gradient(
      180deg,
      rgba(var(--brand-dark-rgb), 0) 0%,
      rgba(var(--brand-dark-rgb), 0.35) 28%,
      rgba(var(--brand-dark-rgb), 0.78) 58%,
      var(--bg) 100%
    );
  }

  .hero-overlay {
    display: none;
  }

  .section { padding: 70px 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .features { grid-template-columns: 1fr; }
  .room-slider { height: 280px; }
  .service-slider { height: 220px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img, .gallery-grid img:nth-child(n) { grid-column: auto; height: 240px; }
  .contact-panel { padding: 24px; }
  .contact-list li { grid-template-columns: 1fr; }
  .footer, .footer-brand { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 420px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }
}


@media (max-width: 760px) {
  body .intro.section {
    padding-top: 86px;
  }
}
