/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #334155;
  background: #F8FAFC;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; color: #1E293B; }
.sec__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0D9488;
  background: #E6F6F4;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.sec__title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.sec__lead { font-size: 1.1rem; color: #64748B; max-width: 560px; }
.sec__head { margin-bottom: 56px; }
.sec__head--center { text-align: center; }
.sec__head--center .sec__lead { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: 100px;
  padding: 14px 28px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #0D9488;
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}
.btn--primary:hover { background: #0F766E; box-shadow: 0 6px 20px rgba(13,148,136,.45); }
.btn--ghost {
  background: rgba(255,255,255,.85);
  color: #1E293B;
  border: 1.5px solid #E2E8F0;
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: #fff; border-color: #0D9488; color: #0D9488; }
.btn--teal { background: #0D9488; color: #fff; }
.btn--teal:hover { background: #0F766E; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }
.btn--full { width: 100%; }

/* ─── SECTION ─── */
.sec { padding: 96px 0; }
@media (max-width: 640px) { .sec { padding: 64px 0; } }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,250,252,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.6);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav__inner { display: flex; align-items: center; gap: 16px; height: 72px; }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: #1E293B;
  flex-shrink: 0;
}
.nav__logo-icon { color: #0D9488; }
.nav__menu {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.nav__menu a {
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 500;
  color: #475569;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.nav__menu a:hover { color: #0D9488; background: #E6F6F4; }
.nav__cta {
  padding: 10px 22px;
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  background: #0D9488;
  border-radius: 100px;
  margin-left: 8px;
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.nav__cta:hover { background: #0F766E; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248,250,252,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 24px;
    gap: 4px;
    border-bottom: 1px solid #E2E8F0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform .35s, opacity .35s;
    pointer-events: none;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav__menu a { padding: 12px 16px; font-size: 1rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ─── HERO ─── */
.hero {
  padding: 72px 0 96px;
  background: linear-gradient(135deg, #F0FDFA 0%, #F8FAFC 50%, #F1F5F9 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: #0D9488;
  background: #E6F6F4;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1E293B;
}
.hero__headline em {
  font-style: italic;
  color: #0D9488;
}
.hero__sub {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: #475569;
}
.hero__img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.hero__float-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0D9488;
  margin-bottom: 2px;
}
.hero__float-text { font-size: .875rem; color: #475569; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__img { max-width: 480px; margin: 0 auto; }
  .hero { padding: 48px 0 64px; }
}

/* ─── ACCOMMODATIONS ─── */
.accommodations { background: #fff; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.card {
  background: #F8FAFC;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.card__img { overflow: hidden; }
.card__img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 28px; }
.card__title { font-size: 1.5rem; margin-bottom: 12px; }
.card__desc { color: #64748B; margin-bottom: 20px; line-height: 1.7; }
.card__list { margin-bottom: 24px; }
.card__list li {
  position: relative;
  padding-left: 22px;
  font-size: .9375rem;
  color: #475569;
  margin-bottom: 10px;
}
.card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #0D9488;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .cards { grid-template-columns: 1fr; }
}

/* ─── AMENITIES ─── */
.amenities { background: #F8FAFC; }
.amenities__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.amenity {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s;
}
.amenity:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.amenity__icon {
  width: 52px;
  height: 52px;
  background: #E6F6F4;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0D9488;
  margin-bottom: 20px;
}
.amenity__name { font-size: 1.1rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 600; }
.amenity__desc { font-size: .9rem; color: #64748B; line-height: 1.65; }

@media (max-width: 900px) { .amenities__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .amenities__grid { grid-template-columns: 1fr; } }

/* ─── AREA ─── */
.area { background: #fff; }
.area__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.area__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.area__imgs img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.area__imgs img:first-child { height: 300px; }
.area__imgs img:last-child { height: 200px; grid-column: 2; }
.area__body { color: #64748B; margin-bottom: 16px; line-height: 1.75; }
.area__highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.area__hl { text-align: center; }
.area__hl-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: #0D9488;
  line-height: 1;
  margin-bottom: 6px;
}
.area__hl-label { font-size: .8125rem; color: #94A3B8; font-weight: 500; }

@media (max-width: 900px) {
  .area__grid { grid-template-columns: 1fr; gap: 40px; }
  .area__imgs { max-width: 480px; }
}

/* ─── GALLERY ─── */
.gallery { background: #F8FAFC; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.gallery__item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.gallery__item img { width: 100%; height: 240px; object-fit: cover; }

@media (max-width: 768px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery__grid { grid-template-columns: 1fr; } .gallery__item img { height: 200px; } }

/* ─── TESTIMONIAL ─── */
.testimonial { background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%); padding: 80px 0; }
.testimonial__card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial__quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.2);
}
.testimonial__text {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 32px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,.3);
  flex-shrink: 0;
}
.testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__name {
  display: block;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
}
.testimonial__loc { font-size: .8125rem; color: rgba(255,255,255,.7); }

/* ─── CONTACT ─── */
.contact { background: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact__body { color: #64748B; margin-bottom: 32px; line-height: 1.75; }
.contact__dl { display: grid; gap: 24px; }
.contact__dl-item { border-bottom: 1px solid #E2E8F0; padding-bottom: 24px; }
.contact__dl-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact__dl-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #94A3B8;
  margin-bottom: 6px;
}
.contact__dl dd { font-size: 1rem; color: #334155; }
.contact__dl a { color: #0D9488; font-weight: 500; transition: color .2s; }
.contact__dl a:hover { color: #0F766E; }
.contact__note { font-size: .875rem; color: #94A3B8; }

/* ─── FORM ─── */
.contact__form-wrap {
  background: #F8FAFC;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.form__title { font-size: 1.375rem; margin-bottom: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { margin-bottom: 18px; }
.form__field label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}
.form__input {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  color: #1E293B;
  background: #fff;
  border: 1.5px solid #E2E8F0;
  border-radius: 12px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form__input:focus { border-color: #0D9488; box-shadow: 0 0 0 3px rgba(13,148,136,.12); }
.form__input::placeholder { color: #94A3B8; }
.form__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form__textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: #E6F6F4;
  color: #0D9488;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 500;
}
.form__success svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }
}

/* ─── FOOTER ─── */
.footer {
  background: #1E293B;
  color: #94A3B8;
  padding: 56px 0 32px;
}
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer__logo-icon { color: #0D9488; }
.footer__copy { font-size: .875rem; line-height: 1.7; }
.footer__copy a { color: #5EEAD4; transition: color .2s; }
.footer__copy a:hover { color: #fff; }
.footer__nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.footer__nav a {
  padding: 8px 16px;
  font-size: .875rem;
  color: #94A3B8;
  border-radius: 100px;
  transition: color .2s, background .2s;
}
.footer__nav a:hover { color: #fff; background: rgba(255,255,255,.08); }
.footer__copy2 { font-size: .8125rem; color: #64748B; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
