:root {
  --ink: #070707;
  --muted: #6c6a63;
  --paper: #fbfaf6;
  --line: #e7e1d7;
  --lime: #d7f21e;
  --lime-dark: #b8d300;
  --card: #ffffff;
  --shadow: 0 12px 34px rgba(30, 27, 19, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 60%, rgba(215, 242, 30, .16), transparent 14rem),
    linear-gradient(180deg, #f7f3eb 0%, var(--paper) 30%, #f8f5ed 100%);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.16em;
}

.icon.small {
  width: 1em;
  height: 1em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  max-width: 1210px;
  margin: 0 auto;
  padding: 21px 46px 13px;
  background: rgba(248, 245, 237, .88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  gap: 2px;
  line-height: 1;
  width: max-content;
}

.brand-main {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 8px;
}

.brand-main sup {
  color: var(--lime-dark);
  font-size: 18px;
  letter-spacing: 0;
}

.brand-sub {
  justify-self: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 10px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 39px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 13px 0 19px;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 42px;
  height: 5px;
  border-radius: 99px;
  background: var(--lime);
  transform: translateX(-50%);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 13px;
  background: var(--lime);
  box-shadow: 0 10px 22px rgba(206, 229, 18, .35);
  font-weight: 800;
  font-size: 14px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

main,
.site-footer {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 575px;
  display: grid;
  grid-template-columns: minmax(360px, 44%) 1fr;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 56%;
  z-index: 2;
  background: linear-gradient(90deg, #faf7f0 0%, #faf7f0 54%, rgba(250, 247, 240, .72) 78%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 66px 0 0 56px;
}

.hero h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 25px;
  font-size: clamp(50px, 5.8vw, 70px);
  line-height: .99;
  font-weight: 900;
}

.hero h1 span {
  position: relative;
  z-index: 1;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -12px;
  bottom: 4px;
  z-index: -1;
  height: 14px;
  border-radius: 999px 32px 999px 26px;
  background: var(--lime);
  transform: rotate(-2deg);
}

.hero h1::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -78px;
  width: 58px;
  height: 50px;
  background:
    linear-gradient(var(--ink), var(--ink)) 10px 8px / 4px 34px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 36px 0 / 4px 24px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 45px 36px / 28px 4px no-repeat;
  border-radius: 4px;
  transform: rotate(18deg);
}

.hero p {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 43px;
  padding: 0 22px;
  border-radius: 15px;
  border: 1.5px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover,
.btn:focus-visible,
.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-light {
  background: rgba(255, 255, 255, .76);
}

.btn.slim {
  min-height: 38px;
  padding: 0 18px;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 25%;
}

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

.feature-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: -71px 58px 36px;
  border-radius: 12px;
  overflow: hidden;
  background: #080808;
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .18);
}

.feature-strip article {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 12px;
  min-height: 132px;
  padding: 37px 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.feature-strip article:last-child {
  border-right: 0;
}

.line-icon {
  color: var(--lime);
  font-size: 42px;
  line-height: 1;
}

.line-icon .icon {
  width: 42px;
  height: 42px;
}

.feature-strip h2 {
  margin: 0 0 10px;
  font-size: 13px;
}

.feature-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .83);
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.section {
  padding: 0 58px;
}

.section-heading p,
.faq-card > p {
  margin: 0 0 9px;
  color: var(--lime-dark);
  font-size: 13px;
  font-weight: 900;
}

.section-heading h2,
.amenities h2,
.faq-card h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.1;
}

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

.room-card,
.amenities,
.gallery-card,
.location-card,
.faq-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--shadow);
}

.room-card {
  overflow: hidden;
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.room-card:hover,
.room-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(184, 211, 0, .72);
  box-shadow: 0 20px 44px rgba(30, 27, 19, .16);
}

.room-image {
  position: relative;
  aspect-ratio: 1.92;
  overflow: hidden;
}

.room-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease;
}

.room-card:hover .room-image img,
.room-card:focus-within .room-image img {
  transform: scale(1.055);
}

.room-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 900;
}

.room-body {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  min-height: 126px;
  padding: 21px 22px 19px;
}

.room-icon {
  font-size: 31px;
  line-height: 1;
}

.room-icon .icon {
  width: 30px;
  height: 30px;
}

.room-body h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.room-body p {
  margin: 0 0 12px;
  max-width: 285px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.room-body strong {
  color: var(--lime-dark);
  font-size: 20px;
  font-weight: 900;
  transition: color .18s ease;
}

.room-card:hover .room-body strong {
  color: #8fa600;
}

.room-body small {
  color: var(--ink);
  font-size: 12px;
}

.amenities {
  margin: 35px 58px 25px;
  padding: 24px 21px 20px;
  text-align: center;
}

.amenities h2 {
  margin-bottom: 24px;
}

.amenities h2 span {
  position: relative;
}

.amenities h2 span::after {
  content: "";
  position: absolute;
  left: 2px;
  right: -6px;
  bottom: -3px;
  height: 7px;
  z-index: -1;
  border-radius: 999px;
  background: var(--lime);
  transform: rotate(-2deg);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}

.amenity-grid div {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
  border-right: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}

.amenity-grid div:hover,
.amenity-grid div:focus-within {
  z-index: 1;
  transform: translateY(-6px);
  background: #0a0a0a;
  color: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .14);
}

.amenity-grid div:last-child {
  border-right: 0;
}

.amenity-grid span {
  color: var(--ink);
  font-size: 31px;
  line-height: 1;
  transition: color .2s ease, transform .2s ease;
}

.amenity-grid div:hover span,
.amenity-grid div:focus-within span {
  color: var(--lime);
  transform: scale(1.08);
}

.amenity-grid .icon {
  width: 32px;
  height: 32px;
}

.amenity-grid p {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.info-grid {
  display: grid;
  grid-template-columns: .68fr 1.22fr 1.1fr;
  gap: 19px;
  padding: 0 58px;
}

.why-card {
  position: relative;
  min-height: 318px;
  padding: 30px 28px;
  border-radius: 10px;
  overflow: hidden;
  background: #090909;
  color: #fff;
  box-shadow: var(--shadow);
}

.why-card h2,
.gallery-card h2,
.location-card h2,
.contact-card h2 {
  margin: 0 0 23px;
  color: var(--lime-dark);
  font-size: 14px;
  font-weight: 900;
}

.why-card ul,
.location-card ul,
.contact-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-card li,
.location-card li,
.contact-card li {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  font-weight: 600;
}

.why-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-size: 12px;
}

.planet {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: 58px;
  height: 37px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.planet::after {
  content: "";
  position: absolute;
  inset: 12px -13px;
  border-top: 2px solid var(--lime);
  border-radius: 50%;
}

.gallery-card,
.location-card {
  padding: 28px;
  min-height: 318px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.gallery-grid img {
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 8px;
}

.location-card {
  position: relative;
}

.location-card p {
  max-width: 290px;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.location-card ul {
  gap: 14px;
  margin-bottom: 28px;
}

.location-card li::before {
  content: "⌾";
  position: absolute;
  left: 0;
  top: -1px;
}

.contact-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 0;
}

.pin {
  position: absolute;
  top: 23px;
  right: 27px;
  color: var(--lime-dark);
  font-size: 83px;
  line-height: 1;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr .65fr 1.35fr;
  gap: 19px;
  padding: 19px 58px 26px;
}

.faq-card {
  padding: 19px 24px;
}

.faq-card h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

details {
  border-top: 1px solid var(--line);
}

summary {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.move-card {
  min-height: 204px;
  padding: 43px 35px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--lime);
  background-image:
    radial-gradient(circle at 86% 20%, transparent 0 14px, rgba(0, 0, 0, .16) 15px, transparent 16px),
    linear-gradient(135deg, rgba(255, 255, 255, .24), transparent);
}

.move-card h2 {
  margin: 0 0 16px;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 43px;
  line-height: .94;
  transform: rotate(-6deg);
  transform-origin: center;
}

.move-card p {
  margin: 0;
  max-width: 210px;
  font-size: 14px;
  line-height: 1.52;
  font-weight: 700;
}

.contact-card {
  position: relative;
  min-height: 204px;
  padding: 28px 33px;
  overflow: hidden;
}

.contact-card ul {
  gap: 15px;
}

.badge {
  position: absolute;
  right: 41px;
  top: 37px;
  width: 146px;
  height: 146px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 50%;
  background: #080808;
  color: #fff;
  text-align: center;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  transform: rotate(-12deg);
  transform-origin: center;
}

.badge::after {
  content: ":)";
  position: absolute;
  right: -20px;
  bottom: -11px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 19px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px 58px;
  background: #070707;
  color: #fff;
}

.footer-brand .brand-main {
  font-size: 31px;
  letter-spacing: 6px;
}

.footer-brand .brand-sub {
  font-size: 9px;
  letter-spacing: 8px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 24px 10px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 670px;
  }

  .hero::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(250, 247, 240, .97) 0%, rgba(250, 247, 240, .78) 43%, transparent 75%);
  }

  .hero-copy {
    padding: 38px 28px 0;
    min-width: 0;
  }

  .hero-image {
    inset: 220px 0 0;
  }

  .feature-strip,
  .room-grid,
  .amenity-grid,
  .info-grid,
  .bottom-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section,
  .info-grid,
  .bottom-grid {
    padding-left: 24px;
    padding-right: 24px;
  }

  .feature-strip,
  .amenities {
    margin-left: 24px;
    margin-right: 24px;
  }

  .location-card,
  .contact-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .brand-main {
    font-size: 29px;
    letter-spacing: 5px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 7px;
  }

  .whatsapp {
    min-height: 42px;
    padding: 0 14px;
  }

  .hero {
    min-height: 710px;
  }

  .hero h1 {
    width: auto;
    font-size: clamp(40px, 12vw, 48px);
  }

  .hero h1::after {
    display: none;
  }

  .hero-copy {
    padding-top: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    max-width: 330px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .hero-whatsapp {
    display: none;
  }

  .section-heading h2,
  .amenities h2,
  .faq-card h2 {
    font-size: 26px;
  }

  .room-card:hover,
  .room-card:focus-within,
  .amenity-grid div:hover,
  .amenity-grid div:focus-within {
    transform: none;
  }

  .room-body {
    min-height: auto;
  }

  .amenities {
    padding-left: 14px;
    padding-right: 14px;
  }

  .amenity-grid {
    gap: 8px;
  }

  .amenity-grid div {
    min-height: 86px;
    border: 1px solid var(--line);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    inset: 350px 0 0;
  }

  .feature-strip,
  .room-grid,
  .amenity-grid,
  .info-grid,
  .bottom-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    margin-top: -32px;
  }

  .feature-strip article {
    min-height: 104px;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .amenity-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gallery-card,
  .location-card,
  .why-card,
  .contact-card {
    min-height: auto;
  }

  .badge {
    position: relative;
    right: auto;
    top: auto;
    margin: 24px auto 0;
    width: 136px;
    height: 136px;
    font-size: 16px;
  }

  .site-footer {
    justify-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 11px;
    padding: 14px 16px 8px;
  }

  .brand {
    justify-self: center;
    text-align: center;
  }

  .whatsapp {
    justify-self: stretch;
    width: 100%;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-copy {
    padding: 26px 16px 0;
  }

  .hero h1 {
    font-size: clamp(35px, 11vw, 43px);
  }

  .hero p {
    max-width: 310px;
  }

  .hero-image {
    inset: 390px 0 0;
  }

  .feature-strip,
  .amenities {
    margin-left: 16px;
    margin-right: 16px;
  }

  .section,
  .info-grid,
  .bottom-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .room-body {
    grid-template-columns: 32px 1fr;
    padding: 18px 16px;
  }

  .room-body p {
    max-width: none;
  }

  .amenity-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-card,
  .location-card,
  .faq-card,
  .contact-card,
  .why-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pin {
    font-size: 56px;
    opacity: .55;
  }

  .contact-card li {
    align-items: flex-start;
    overflow-wrap: anywhere;
  }

  .move-card {
    padding: 34px 28px;
  }

  .move-card h2 {
    font-size: 39px;
  }

  .site-footer {
    padding: 20px 16px;
  }
}

@media (max-width: 360px) {
  .brand-main {
    font-size: 25px;
    letter-spacing: 4px;
  }

  .brand-sub {
    letter-spacing: 5px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero {
    min-height: 735px;
  }

  .hero-image {
    inset: 400px 0 0;
  }

  .btn {
    min-height: 46px;
    padding-left: 14px;
    padding-right: 14px;
    font-size: 13px;
  }

  .feature-strip article {
    grid-template-columns: 38px 1fr;
    padding: 20px 18px;
  }

  .line-icon .icon {
    width: 34px;
    height: 34px;
  }
}
