/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #1A2744;
  background: #F8FAFB;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.1);
  transition: background 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #F8FAFB;
  letter-spacing: -0.01em;
}
.nav__logo span { color: #5EEAD4; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(248, 250, 251, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #5EEAD4;
  transition: width 0.3s ease;
}
.nav__link:hover { color: #5EEAD4; }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  background: #5EEAD4;
  color: #0A2540;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.625rem 1.375rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav__cta:hover { background: #3DD4BA; transform: translateY(-1px); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F8FAFB;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F8FAFB;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: #5EEAD4; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 37, 64, 0.88) 0%,
    rgba(10, 37, 64, 0.72) 50%,
    rgba(10, 37, 64, 0.55) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 2rem;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(94, 234, 212, 0.4);
  border-radius: 100px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900;
  color: #F8FAFB;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: #5EEAD4;
}
.hero__subtitle {
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  color: rgba(248, 250, 251, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: #5EEAD4;
  color: #0A2540;
}
.btn--primary:hover { background: #3DD4BA; box-shadow: 0 8px 32px rgba(94, 234, 212, 0.3); }
.btn--outline {
  background: transparent;
  color: #F8FAFB;
  border: 1.5px solid rgba(248, 250, 251, 0.4);
}
.btn--outline:hover { border-color: #5EEAD4; color: #5EEAD4; }
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(248, 250, 251, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(94, 234, 212, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Section: Intro Strip ─── */
.intro-strip {
  background: #0A2540;
  padding: 4rem 0;
}
.intro-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.intro-strip__item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(94, 234, 212, 0.1);
}
.intro-strip__item:last-child { border-right: none; }
.intro-strip__number {
  font-family: 'Merriweather', serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: #5EEAD4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.intro-strip__label {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 250, 251, 0.6);
}

/* ─── Section: About ─── */
.about {
  padding: 7rem 0;
  background: #F8FAFB;
}
.about__header {
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0A2540;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.5rem;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 2px;
  background: #5EEAD4;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: #0A2540;
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: #1A5F7A; }
.section-subtitle {
  font-size: 1.125rem;
  color: #4A5568;
  max-width: 560px;
  line-height: 1.7;
}
.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text p {
  color: #4A5568;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about__text p:first-child {
  font-size: 1.1875rem;
  color: #1A2744;
  font-weight: 500;
}
.about__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: #5EEAD4;
  border-radius: 8px;
  z-index: -1;
}

/* ─── Section: Amenities ─── */
.amenities {
  padding: 7rem 0;
  background: #0A2540;
}
.amenities .section-eyebrow { color: #5EEAD4; }
.amenities .section-title { color: #F8FAFB; }
.amenities .section-subtitle { color: rgba(248, 250, 251, 0.65); }
.amenities__header { margin-bottom: 4rem; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: rgba(248, 250, 251, 0.04);
  border: 1px solid rgba(94, 234, 212, 0.1);
  border-radius: 8px;
  padding: 2.25rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.amenity-card:hover {
  background: rgba(94, 234, 212, 0.06);
  border-color: rgba(94, 234, 212, 0.25);
  transform: translateY(-4px);
}
.amenity-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(94, 234, 212, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.amenity-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #5EEAD4;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.amenity-card__title {
  font-family: 'Merriweather', serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #F8FAFB;
  margin-bottom: 0.75rem;
}
.amenity-card__desc {
  font-size: 0.9375rem;
  color: rgba(248, 250, 251, 0.55);
  line-height: 1.7;
}

/* ─── Section: Location ─── */
.location {
  padding: 7rem 0;
  background: #F8FAFB;
}
.location__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location__text p {
  color: #4A5568;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.location__text p:first-child {
  font-size: 1.125rem;
  color: #1A2744;
  font-weight: 500;
}
.location__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.location__highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.location__highlight-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}
.location__highlight-icon svg {
  width: 100%;
  height: 100%;
  stroke: #5EEAD4;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.location__highlight-text {
  font-size: 0.9375rem;
  color: #1A2744;
  font-weight: 500;
  line-height: 1.4;
}
.location__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.location__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 120px;
  height: 120px;
  background: #5EEAD4;
  border-radius: 8px;
  z-index: -1;
}

/* ─── Section: CTA ─── */
.cta {
  padding: 7rem 0;
  background: #0A2540;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.cta__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta .section-eyebrow { color: #5EEAD4; }
.cta .section-title { color: #F8FAFB; margin-bottom: 1rem; }
.cta__text {
  font-size: 1.125rem;
  color: rgba(248, 250, 251, 0.65);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.cta__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.cta__contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: #5EEAD4;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta__contact-text {
  font-size: 0.9375rem;
  color: rgba(248, 250, 251, 0.8);
  font-weight: 500;
}
.cta__contact-text a {
  color: #5EEAD4;
  transition: color 0.2s ease;
}
.cta__contact-text a:hover { color: #3DD4BA; }

/* ─── Footer ─── */
.footer {
  background: #071A2D;
  padding: 3rem 0;
  border-top: 1px solid rgba(94, 234, 212, 0.08);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__logo {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  font-size: 1.0625rem;
  color: #F8FAFB;
}
.footer__logo span { color: #5EEAD4; }
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(248, 250, 251, 0.35);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__link {
  font-size: 0.8125rem;
  color: rgba(248, 250, 251, 0.4);
  transition: color 0.2s ease;
}
.footer__link:hover { color: #5EEAD4; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .intro-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .intro-strip__item { border-bottom: 1px solid rgba(94, 234, 212, 0.1); }
  .intro-strip__item:nth-child(2) { border-right: none; }
  .about__body,
  .location__body { grid-template-columns: 1fr; gap: 2.5rem; }
  .amenities__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .location__highlights { grid-template-columns: 1fr; }
  .cta__contact { flex-direction: column; gap: 1rem; }
  .footer__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .intro-strip__grid { grid-template-columns: 1fr; }
  .intro-strip__item { border-right: none; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
