/* Shri's Pride Inn — Goa beach hotel with scroll-driven motion */

:root {
  --navy: #102542;
  --navy-deep: #0a1a2e;
  --gold: #f5c842;
  --gold-dark: #d4a82a;
  --green: #3d9b5f;
  --green-light: #5cb87a;
  --sand: #faf6f0;
  --sand-dark: #f0e8dc;
  --ocean: #1a6b8a;
  --ocean-light: #2a8fad;
  --white: #ffffff;
  --text: #4a5568;
  --text-light: rgba(255, 255, 255, 0.85);
  --shadow: 0 20px 60px rgba(16, 37, 66, 0.12);
  --shadow-lg: 0 30px 80px rgba(16, 37, 66, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
  --font: "Outfit", system-ui, sans-serif;
  --script: "Dancing Script", cursive;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--sand);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.shell {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Beach background —— */
.beach-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}
.beach-bg__sand {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(245, 200, 130, 0.25), transparent 70%),
    linear-gradient(180deg, var(--sand) 0%, var(--sand-dark) 100%);
}
.beach-bg__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40vh;
  opacity: 0.15;
  background: repeating-linear-gradient(
    -3deg,
    transparent,
    transparent 40px,
    rgba(26, 107, 138, 0.08) 40px,
    rgba(26, 107, 138, 0.08) 80px
  );
  animation: waveShift 20s linear infinite;
}
@keyframes waveShift {
  from { background-position: 0 0; }
  to { background-position: 200px 0; }
}

/* —— Floating leaves —— */
.float-leaves { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.leaf {
  position: absolute;
  width: 18px;
  height: 28px;
  background: var(--green-light);
  border-radius: 0 80% 0 80%;
  opacity: 0.35;
  animation: leafFloat 12s ease-in-out infinite;
}
.leaf--1 { top: 12%; left: 8%; animation-delay: 0s; }
.leaf--2 { top: 25%; right: 12%; animation-delay: -3s; transform: rotate(45deg); }
.leaf--3 { top: 55%; left: 5%; animation-delay: -6s; width: 14px; height: 22px; }
.leaf--4 { top: 70%; right: 8%; animation-delay: -2s; }
.leaf--5 { top: 40%; left: 45%; animation-delay: -8s; opacity: 0.2; }
.leaf--6 { top: 85%; right: 30%; animation-delay: -5s; }
@keyframes leafFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
  25% { transform: translate(30px, -40px) rotate(90deg); opacity: 0.45; }
  50% { transform: translate(-20px, -80px) rotate(180deg); opacity: 0.3; }
  75% { transform: translate(40px, -50px) rotate(270deg); opacity: 0.4; }
}

/* —— Extra moving beach details —— */
.motion-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.motion-cloud {
  position: absolute;
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  filter: blur(0.5px);
  opacity: 0.5;
  animation: cloudDrift 34s linear infinite;
}
.motion-cloud::before,
.motion-cloud::after {
  content: "";
  position: absolute;
  bottom: 8px;
  border-radius: 50%;
  background: inherit;
}
.motion-cloud::before {
  left: 18px;
  width: 42px;
  height: 42px;
}
.motion-cloud::after {
  right: 20px;
  width: 56px;
  height: 56px;
}
.motion-cloud--1 { top: 14%; left: -140px; animation-duration: 42s; }
.motion-cloud--2 { top: 35%; left: -180px; width: 150px; opacity: 0.32; animation-duration: 55s; animation-delay: -18s; }
.motion-cloud--3 { top: 68%; left: -120px; width: 92px; opacity: 0.28; animation-duration: 48s; animation-delay: -29s; }
@keyframes cloudDrift {
  from { transform: translateX(0); }
  to { transform: translateX(calc(100vw + 220px)); }
}

.motion-bird {
  position: absolute;
  width: 34px;
  height: 16px;
  opacity: 0.45;
  animation: birdGlide 24s linear infinite;
}
.motion-bird::before,
.motion-bird::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 17px;
  height: 9px;
  border-top: 2px solid rgba(16, 37, 66, 0.58);
}
.motion-bird::before {
  left: 0;
  border-radius: 100% 0 0 0;
  transform-origin: right center;
  animation: wingLeft 1.8s ease-in-out infinite;
}
.motion-bird::after {
  right: 0;
  border-radius: 0 100% 0 0;
  transform-origin: left center;
  animation: wingRight 1.8s ease-in-out infinite;
}
.motion-bird--1 { top: 22%; left: -40px; animation-duration: 26s; }
.motion-bird--2 { top: 31%; left: -80px; transform: scale(0.72); animation-duration: 31s; animation-delay: -12s; }
.motion-bird--3 { top: 16%; left: -120px; transform: scale(0.58); animation-duration: 36s; animation-delay: -21s; }
@keyframes birdGlide {
  from { translate: 0 0; }
  45% { translate: 48vw -18px; }
  to { translate: calc(100vw + 160px) 8px; }
}
@keyframes wingLeft {
  0%, 100% { transform: rotate(12deg); }
  50% { transform: rotate(-18deg); }
}
@keyframes wingRight {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(18deg); }
}

.motion-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(245, 200, 66, 0.7);
  box-shadow: 0 0 18px rgba(245, 200, 66, 0.55);
  animation: sparkleFloat 5s ease-in-out infinite;
}
.motion-spark--1 { top: 22%; left: 12%; animation-delay: -1s; }
.motion-spark--2 { top: 48%; left: 42%; width: 7px; height: 7px; animation-delay: -3s; }
.motion-spark--3 { top: 76%; left: 18%; width: 8px; height: 8px; animation-delay: -4.5s; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(0.75); opacity: 0.22; }
  45% { transform: translateY(-18px) scale(1.15); opacity: 0.75; }
}

.motion-shell {
  position: absolute;
  width: 24px;
  height: 18px;
  border-radius: 80% 80% 30% 30%;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.45) 0 2px, transparent 2px 5px),
    linear-gradient(135deg, rgba(245, 200, 66, 0.5), rgba(255, 255, 255, 0.36));
  opacity: 0.35;
  animation: shellBob 7s ease-in-out infinite;
}
.motion-shell--1 { left: 6%; bottom: 12%; animation-delay: -2s; }
.motion-shell--2 { right: 14%; bottom: 18%; transform: scale(0.78) rotate(-12deg); animation-delay: -5s; }
@keyframes shellBob {
  0%, 100% { translate: 0 0; rotate: -4deg; }
  50% { translate: 0 -12px; rotate: 7deg; }
}

.motion-wave {
  position: absolute;
  left: -12vw;
  width: 124vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 107, 138, 0.15), transparent);
  opacity: 0.6;
  animation: waveGlisten 9s ease-in-out infinite;
}
.motion-wave--1 { bottom: 26%; animation-delay: -2s; }
.motion-wave--2 { bottom: 19%; animation-delay: -5s; }
@keyframes waveGlisten {
  0%, 100% { transform: translateX(-5%) scaleX(0.85); opacity: 0.2; }
  50% { transform: translateX(5%) scaleX(1); opacity: 0.65; }
}

/* —— Scroll animations —— */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
  will-change: opacity, transform;
}
[data-animate="fade-up"]    { transform: translateY(70px); }
[data-animate="fade-down"]  { transform: translateY(-70px); }
[data-animate="fade-left"]  { transform: translateX(80px); }
[data-animate="fade-right"] { transform: translateX(-80px); }
[data-animate="scale-up"]   { transform: scale(0.85); }
[data-animate="blur-in"]    { filter: blur(12px); transform: translateY(30px); }

[data-animate].in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

[data-stagger] > [data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > [data-animate]:nth-child(2) { transition-delay: 100ms; }
[data-stagger] > [data-animate]:nth-child(3) { transition-delay: 200ms; }
[data-stagger] > [data-animate]:nth-child(4) { transition-delay: 300ms; }
[data-stagger] > [data-animate]:nth-child(5) { transition-delay: 400ms; }
[data-stagger] > [data-animate]:nth-child(6) { transition-delay: 500ms; }
[data-stagger] > [data-animate]:nth-child(7) { transition-delay: 600ms; }
[data-stagger] > [data-animate]:nth-child(8) { transition-delay: 700ms; }

[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }
[data-delay="6"] { transition-delay: 0.6s !important; }
[data-delay="7"] { transition-delay: 0.7s !important; }

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .leaf,
  .beach-bg__waves,
  .motion-cloud,
  .motion-bird,
  .motion-bird::before,
  .motion-bird::after,
  .motion-spark,
  .motion-shell,
  .motion-wave,
  .motion-balloon,
  .motion-boat,
  .motion-surf,
  .motion-umbrella,
  .motion-beach-ball { animation: none; }
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(16, 37, 66, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.brand__logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  filter: drop-shadow(0 6px 12px rgba(16, 37, 66, 0.18));
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__text strong {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.brand__text span {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s var(--ease-out), left 0.3s var(--ease-out);
}
.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
  left: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 0 auto;
  transition: transform 0.3s, opacity 0.3s;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s, background 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(16, 37, 66, 0.25);
}
.btn--primary:hover { background: var(--navy-deep); }
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn--lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* —— Hero —— */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  margin: 0 0 0.25rem;
  font-weight: 700;
}
.hero__title {
  margin: 0 0 0.75rem;
  line-height: 1;
}
.hero__title-line {
  display: block;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero__title-line--gold { color: var(--gold); }
.hero__tagline {
  font-size: 1.15rem;
  color: var(--text);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.hero__badges span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.hero__desc {
  max-width: 420px;
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  max-width: 90px;
}
.hero__feat-icon { font-size: 1.5rem; }

.hero__visual {
  position: relative;
  width: min(720px, 56vw);
  max-width: none;
  justify-self: end;
  margin-right: calc((100vw - min(1180px, calc(100vw - 2.5rem))) / -2 + 4rem);
}
.hero__frame {
  position: relative;
  border-radius: 34% 8% 16% 28% / 14% 8% 20% 24%;
  overflow: visible;
  background: transparent;
  filter:
    drop-shadow(-24px 30px 42px rgba(138, 105, 58, 0.2))
    drop-shadow(0 10px 24px rgba(16, 37, 66, 0.08));
  transform-origin: center;
  isolation: isolate;
}
.hero__frame::before {
  content: "";
  position: absolute;
  inset: -38px -26px -36px -48px;
  z-index: -1;
  border-radius: 42% 10% 20% 36% / 18% 10% 24% 30%;
  background:
    radial-gradient(ellipse at 53% 52%, rgba(245, 200, 66, 0.12), rgba(250, 246, 240, 0.66) 58%, rgba(250, 246, 240, 0.28) 76%, transparent 88%),
    radial-gradient(ellipse at 30% 75%, rgba(92, 184, 122, 0.12), transparent 60%);
  filter: blur(18px);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: 2;
  border-radius: 34% 8% 16% 28% / 14% 8% 20% 24%;
  background:
    radial-gradient(ellipse at 52% 51%, transparent 58%, rgba(250, 246, 240, 0.16) 72%, rgba(250, 246, 240, 0.62) 90%, var(--sand) 100%),
    linear-gradient(90deg, rgba(250, 246, 240, 0.74), rgba(250, 246, 240, 0.2) 7%, transparent 16%, transparent 84%, rgba(250, 246, 240, 0.22) 93%, rgba(250, 246, 240, 0.7)),
    linear-gradient(180deg, rgba(250, 246, 240, 0.72), rgba(250, 246, 240, 0.18) 8%, transparent 17%, transparent 83%, rgba(250, 246, 240, 0.2) 92%, rgba(250, 246, 240, 0.78));
  pointer-events: none;
}
.hero__frame img {
  display: block;
  width: 100%;
  height: clamp(560px, 78vh, 820px);
  object-fit: cover;
  object-position: center;
  border-radius: 34% 8% 16% 28% / 14% 8% 20% 24%;
  filter: saturate(1.08) contrast(1.02);
  -webkit-mask-image:
    radial-gradient(ellipse at 52% 51%, #000 0%, #000 58%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.34) 90%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 7%, #000 15%, #000 85%, rgba(0, 0, 0, 0.78) 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 7%, #000 15%, #000 85%, rgba(0, 0, 0, 0.78) 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse at 52% 51%, #000 0%, #000 58%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.34) 90%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 7%, #000 15%, #000 85%, rgba(0, 0, 0, 0.78) 93%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 7%, #000 15%, #000 85%, rgba(0, 0, 0, 0.78) 93%, transparent 100%);
  mask-composite: intersect;
}
.hero__frame-glow {
  position: absolute;
  inset: -24px -18px -24px -34px;
  z-index: 1;
  border-radius: 42% 10% 20% 36% / 18% 10% 24% 30%;
  background:
    radial-gradient(ellipse at 52% 51%, transparent 56%, rgba(250, 246, 240, 0.2) 76%, var(--sand) 98%),
    linear-gradient(135deg, rgba(61, 155, 95, 0.12), transparent 44%);
  pointer-events: none;
}
.hero__palm {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 120px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 160'%3E%3Cpath d='M50 160 L50 60' stroke='%233d9b5f' stroke-width='4'/%3E%3Cpath d='M50 50 Q20 30 10 10 Q40 35 50 50 Q60 35 90 10 Q80 30 50 50' fill='%235cb87a'/%3E%3Cpath d='M50 70 Q15 55 5 35 Q35 65 50 75 Q65 65 95 35 Q85 55 50 70' fill='%234a9e6a'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.7;
  pointer-events: none;
}

.wave-divider {
  color: var(--sand);
  line-height: 0;
  margin-top: auto;
}
.wave-divider svg { width: 100%; height: 60px; display: block; }
.wave-divider--bottom { margin-top: 3rem; }
.wave-divider--flip { transform: scaleY(-1); margin-top: 3rem; }
.section--ocean .wave-divider { color: var(--sand); }

/* —— Sections —— */
.section {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
  overflow: hidden;
}
.section--sand { background: var(--sand); }
.section--ocean {
  background: linear-gradient(160deg, var(--ocean) 0%, var(--navy) 100%);
  color: var(--text-light);
}
.section--goa {
  background: linear-gradient(180deg, var(--sand-dark) 0%, #e8dcc8 100%);
  overflow: hidden;
}
.section--contact { background: var(--white); }

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}
.section__head--light .section__title { color: var(--white); }
.section__eyebrow {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--green);
  margin: 0 0 0.5rem;
}
.section__eyebrow--light { color: var(--gold); }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.section__title--light { color: var(--white); }
.section__sub {
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

/* —— Section-specific moving accents —— */
.section-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.section > .shell {
  position: relative;
  z-index: 1;
}

.motion-balloon {
  position: absolute;
  width: 44px;
  height: 56px;
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle at 32% 25%, rgba(255,255,255,0.72), transparent 18%), linear-gradient(145deg, var(--gold), #f28e68);
  opacity: 0.34;
  filter: drop-shadow(0 12px 18px rgba(16, 37, 66, 0.12));
  animation: balloonRise 12s ease-in-out infinite;
}
.motion-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 44px;
  background: rgba(16, 37, 66, 0.22);
  transform: translateX(-50%);
}
.motion-balloon--1 { left: 8%; bottom: 4%; animation-delay: -2s; }
.motion-balloon--2 { right: 12%; bottom: 10%; width: 34px; height: 45px; background: radial-gradient(circle at 32% 25%, rgba(255,255,255,0.72), transparent 18%), linear-gradient(145deg, var(--green-light), var(--ocean-light)); animation-delay: -7s; }
.motion-balloon--3 { left: 48%; bottom: -4%; width: 28px; height: 38px; opacity: 0.26; animation-delay: -10s; }
@keyframes balloonRise {
  0%, 100% { transform: translate3d(0, 18px, 0) rotate(-4deg); }
  35% { transform: translate3d(20px, -22px, 0) rotate(5deg); }
  70% { transform: translate3d(-10px, -48px, 0) rotate(-2deg); }
}

.motion-boat {
  position: absolute;
  right: 6%;
  bottom: 17%;
  width: 132px;
  height: 54px;
  opacity: 0.34;
  animation: boatFloat 8s ease-in-out infinite;
}
.motion-boat::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 24px;
  border-radius: 0 0 60px 60px;
  background: linear-gradient(135deg, var(--navy), var(--ocean));
}
.motion-boat::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 24px;
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 54px solid rgba(255, 255, 255, 0.78);
  filter: drop-shadow(0 4px 0 rgba(245, 200, 66, 0.35));
}
@keyframes boatFloat {
  0%, 100% { transform: translateX(0) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-34px) translateY(-9px) rotate(2deg); }
}

.motion-surf {
  position: absolute;
  width: 96px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  opacity: 0.5;
  animation: surfSlide 7s ease-in-out infinite;
}
.motion-surf::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 38px;
  width: 28px;
  height: 20px;
  border-radius: 50% 50% 0 0;
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-8deg);
}
.motion-surf--1 { left: 9%; bottom: 20%; animation-delay: -2s; }
.motion-surf--2 { left: 34%; bottom: 12%; width: 74px; opacity: 0.36; animation-delay: -5s; }
@keyframes surfSlide {
  0%, 100% { transform: translateX(-18px) scaleX(0.9); }
  50% { transform: translateX(42px) scaleX(1.1); }
}

.motion-umbrella {
  position: absolute;
  width: 112px;
  height: 86px;
  opacity: 0.22;
  animation: umbrellaSway 9s ease-in-out infinite;
}
.motion-umbrella::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 112px;
  height: 56px;
  border-radius: 112px 112px 0 0;
  background: repeating-conic-gradient(from 0deg at 50% 100%, rgba(245, 200, 66, 0.92) 0 24deg, rgba(61, 155, 95, 0.78) 24deg 48deg);
}
.motion-umbrella::after {
  content: "";
  position: absolute;
  left: 54px;
  top: 50px;
  width: 3px;
  height: 50px;
  background: rgba(16, 37, 66, 0.42);
  transform: rotate(12deg);
  transform-origin: top;
}
.motion-umbrella--1 { left: 6%; bottom: 8%; }
.motion-umbrella--2 { right: 8%; top: 18%; transform: scale(0.68) rotate(-12deg); animation-delay: -4s; }
@keyframes umbrellaSway {
  0%, 100% { translate: 0 0; rotate: -2deg; }
  50% { translate: 0 -10px; rotate: 4deg; }
}

.motion-beach-ball {
  position: absolute;
  right: 22%;
  bottom: 12%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  opacity: 0.32;
  background: conic-gradient(var(--gold) 0 25%, var(--white) 25% 50%, var(--green-light) 50% 75%, var(--ocean-light) 75% 100%);
  animation: ballRoll 10s ease-in-out infinite;
}
@keyframes ballRoll {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(-52px) translateY(-10px) rotate(-180deg); }
}

/* —— Features —— */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
}
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

/* —— Rooms —— */
.rooms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.room-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-spring);
}
.room-card:hover { transform: translateY(-6px); }
.room-card__visual {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.room-card__visual--ac {
  background-image: linear-gradient(135deg, rgba(26, 107, 138, 0.6), rgba(16, 37, 66, 0.8)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Crect fill='%232a8fad' width='400' height='200'/%3E%3Ctext x='200' y='110' text-anchor='middle' fill='white' font-size='24' font-family='sans-serif'%3EAC Room%3C/text%3E%3C/svg%3E");
}
.room-card__visual--nonac {
  background-image: linear-gradient(135deg, rgba(61, 155, 95, 0.5), rgba(16, 37, 66, 0.7)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='200'%3E%3Crect fill='%235cb87a' width='400' height='200'/%3E%3Ctext x='200' y='110' text-anchor='middle' fill='white' font-size='24' font-family='sans-serif'%3ENon-AC Room%3C/text%3E%3C/svg%3E");
}
.room-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.room-card__body { padding: 1.75rem; }
.room-card__body h3 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.25rem;
}
.room-card__body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  opacity: 0.85;
}
.room-card__meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
}

/* —— Amenities —— */
.amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(16, 37, 66, 0.06);
  font-weight: 500;
  color: var(--navy);
  transition: transform 0.3s var(--ease-spring);
}
.amenity-list li:hover { transform: translateX(6px); }
.amenity-list span:first-child { font-size: 1.3rem; }

/* —— Goa section —— */
.goa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.goa__text {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2rem;
}
.goa__stats {
  display: flex;
  gap: 2rem;
}
.goa__stat {
  text-align: center;
}
.goa__stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.goa__stat[data-suffix="+"] strong::after { content: "+"; font-size: 1.5rem; color: var(--green); }
.goa__stat[data-suffix="%"] strong::after { content: "%"; font-size: 1.5rem; color: var(--green); }
.goa__stat span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.goa__visual {
  position: relative;
  height: 360px;
}
.goa__sun {
  position: absolute;
  top: 20px;
  right: 60px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--gold) 30%, rgba(245, 200, 66, 0.3) 70%, transparent 100%);
  border-radius: 50%;
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}
.goa__palm {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 240'%3E%3Cpath d='M100 240 L100 90' stroke='%233d9b5f' stroke-width='6'/%3E%3Cpath d='M100 80 Q40 50 15 15 Q55 70 100 85 Q145 70 185 15 Q160 50 100 80' fill='%235cb87a'/%3E%3Cpath d='M100 110 Q30 85 10 50 Q60 110 100 120 Q140 110 190 50 Q170 85 100 110' fill='%234a9e6a'/%3E%3Cpath d='M100 140 Q50 125 25 95 Q70 150 100 155 Q130 150 175 95 Q150 125 100 140' fill='%233d9b5f'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* —— Contact —— */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--sand);
  border-radius: var(--radius-sm);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
a.contact__card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.contact__card-icon { font-size: 1.5rem; }
.contact__card strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
}
.contact__card span { font-size: 0.9rem; }
.contact__form {
  display: grid;
  gap: 1rem;
  background: var(--sand);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact__form label span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.contact__form input,
.contact__form textarea {
  padding: 0.75rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.3s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* —— Footer —— */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer__brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  padding: 3px;
}
.footer__brand p { margin: 0; font-size: 0.9rem; }
.footer__brand small { opacity: 0.6; }
.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.85rem;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.footer__nav a:hover { opacity: 1; }

/* —— Responsive —— */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual {
    order: -1;
    width: min(560px, 100%);
    max-width: 560px;
    margin: 0 auto;
  }
  .hero__frame img { height: clamp(480px, 70vh, 680px); }
  .amenities, .goa, .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-toggle { display: flex; }
  .features, .rooms { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr; }
  .goa__stats { justify-content: center; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; }
}
