/* ============================================================
   PARAÍSO BORINQUEN — Styles v2
   ============================================================ */

:root {
  --ocean: #1a6b7a;
  --ocean-deep: #0d4a55;
  --ocean-light: #4da8b8;
  --sand: #e8d5b0;
  --sand-light: #f5edd8;
  --palm: #1f5221;
  --palm-light: #3d8c40;
  --sunset: #c85520;
  --sunset-gold: #b87e18;
  --ivory: #fdf8f0;
  --charcoal: #1c1c1c;
  --body-text: #2e2a25;
  --mid-text: #4a4540;
  --soft-text: #5c5650;
  --white: #ffffff;
  --nonprofit-green: #1f5221;
  --nonprofit-light: #e4f0e5;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Josefin Sans', system-ui, sans-serif;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
  --max-w: 1260px;
  --ease-silk: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.7;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--ocean-light); color: var(--white); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--sand-light); }
::-webkit-scrollbar-thumb { background: var(--ocean); border-radius: 4px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.5s var(--ease-silk), box-shadow 0.5s;
}
.nav.scrolled {
  background: rgba(253, 248, 240, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color 0.5s;
}
.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.5s;
}
.nav.scrolled .nav__logo-text { color: var(--ocean-deep); }
.nav.scrolled .nav__logo-sub { color: var(--soft-text); }
.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--sunset-gold);
  transition: width 0.4s var(--ease-silk);
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.nav.scrolled .nav__link { color: var(--mid-text); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--ocean-deep); }

.nonprofit-link {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  padding: 6px 14px !important;
  color: rgba(255,255,255,0.95) !important;
  transition: all 0.3s;
}
.nonprofit-link:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.8); }
.nav.scrolled .nonprofit-link { border-color: var(--nonprofit-green); color: var(--nonprofit-green) !important; }
.nav.scrolled .nonprofit-link:hover { background: var(--nonprofit-light); }
.nonprofit-link::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.nav.scrolled .nav__hamburger span { background: var(--charcoal); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-silk);
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.btn--primary:hover { background: var(--ocean-deep); border-color: var(--ocean-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--ocean); border-color: var(--ocean); }
.btn--outline:hover { background: var(--ocean); color: var(--white); }
.btn--nonprofit { background: var(--nonprofit-green); color: var(--white); border-color: var(--nonprofit-green); font-size: 0.7rem; padding: 12px 24px; }
.btn--nonprofit:hover { background: var(--palm); border-color: var(--palm); }
.btn--sm { padding: 10px 22px; font-size: 0.65rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section { padding: var(--section-pad) clamp(20px, 5vw, 60px); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }
.section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sunset);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: rgba(255,200,80,0.9); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ocean-deep);
  margin-bottom: 32px;
}
.section__title em { font-style: italic; color: var(--sunset); }
.section__title--light { color: var(--white); }
.section__title--light em { color: rgba(255,210,100,0.95); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 1s var(--ease-silk) forwards;
}
.reveal--delay1 { animation-delay: 0.2s; }
.reveal--delay2 { animation-delay: 0.4s; }
.reveal--delay3 { animation-delay: 0.65s; }
@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-silk), transform 0.9s var(--ease-silk);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal--d1 { transition-delay: 0.15s; }
.scroll-reveal--d2 { transition-delay: 0.3s; }
.scroll-reveal--d3 { transition-delay: 0.45s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,50,60,0.78) 0%, rgba(10,40,52,0.60) 50%, rgba(40,18,8,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 900px;
  /* Push content up slightly to make room for scroll indicator below */
  margin-bottom: 80px;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,210,100,0.95);
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}
.hero__title em { font-style: italic; color: rgba(255,210,100,0.95); }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  line-height: 2;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll indicator — fixed to bottom of viewport, clear of buttons */
.hero__scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.15); }
}
.hero__coqui {
  position: absolute;
  bottom: 90px;
  right: 60px;
  z-index: 2;
  width: 130px;
  opacity: 0.35;
  animation: floatCoqui 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes floatCoqui {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,50,60,0.80) 0%, rgba(10,40,52,0.65) 60%, rgba(30,15,5,0.60) 100%);
}
.page-hero__overlay--green {
  background: linear-gradient(160deg, rgba(10,40,15,0.82) 0%, rgba(15,55,20,0.65) 60%, rgba(5,30,10,0.60) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 800px;
}
.page-hero .hero__title { font-size: clamp(3rem, 6vw, 6rem); margin-bottom: 20px; }
.page-hero .hero__subtitle { margin-bottom: 36px; }

/* ============================================================
   INTRO BAND
   ============================================================ */
.intro-band {
  background: var(--ocean-deep);
  padding: 60px clamp(20px, 5vw, 60px);
}
.intro-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
}
.intro-band__item { text-align: center; padding: 20px 30px; }
.intro-band__icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.intro-band__item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sand-light);
  margin-bottom: 10px;
}
.intro-band__item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.intro-band__divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  align-self: center;
}

/* ============================================================
   THE STAY
   ============================================================ */
.stay { background: var(--ivory); }
.stay .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.stay__desc {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.9;
  font-weight: 300;
}
.stay__desc strong { color: var(--ocean-deep); font-weight: 600; }
.stay__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 32px 0 28px;
}
.stay__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--body-text);
  letter-spacing: 0.02em;
}
.stay__feature-icon { color: var(--sunset-gold); font-size: 0.7rem; }

.stay__coming-soon {
  background: rgba(200, 140, 24, 0.08);
  border-left: 3px solid var(--sunset-gold);
  border-radius: 2px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stay__badge {
  background: var(--sunset-gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.stay__coming-soon p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid-text);
  line-height: 1.6;
}

.stay__img-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}
.stay__img-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-silk); }
.stay__img-main:hover img { transform: scale(1.03); }
.stay__img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stay__img-thumb { border-radius: 4px; overflow: hidden; aspect-ratio: 1; position: relative; }
.stay__img-thumb img, .stay__img-thumb video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-silk); }
.stay__img-thumb:hover img, .stay__img-thumb:hover video { transform: scale(1.05); }

/* ============================================================
   COQUI DIVIDER
   ============================================================ */
.coqui-divider {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  padding: 60px clamp(20px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coqui-divider::before, .coqui-divider::after {
  content: 'Ko·Kí';
  font-family: var(--font-display);
  font-size: 15rem;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.coqui-divider::before { left: -60px; }
.coqui-divider::after { right: -60px; }
.coqui-divider__text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  animation: coquiPulse 4s ease-in-out infinite;
}
@keyframes coquiPulse { 0%, 100% { opacity: 0.8; } 50% { opacity: 1; } }
.coqui-divider__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.07em;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--sand-light); }
.services__header { text-align: center; margin-bottom: 60px; }
.services__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.service-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.07);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.service-card__img { aspect-ratio: 16/10; overflow: hidden; }
.service-card__img img, .service-card__img video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}
.service-card:hover .service-card__img img, .service-card:hover .service-card__img video { transform: scale(1.06); }
.service-card__body { padding: 28px; }
.service-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ocean-deep);
  margin-bottom: 10px;
}
.service-card__body p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-card__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
  position: relative;
  padding-bottom: 2px;
}
.service-card__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--sunset);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-silk);
}
.service-card:hover .service-card__link::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   ATTRACTIONS TEASER
   ============================================================ */
.attractions-teaser { background: var(--ivory); }
.attractions-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.attractions-teaser__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.9;
}
.attractions-teaser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.attractions-teaser__card {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.attractions-teaser__card img,
.attractions-teaser__card video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}
.attractions-teaser__card:hover img,
.attractions-teaser__card:hover video { transform: scale(1.06); }
.attractions-teaser__card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 12px 10px;
}
.attractions-teaser__card--cta {
  background: var(--ocean-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.attractions-teaser__card-inner {
  text-align: center;
  padding: 20px;
}
.attractions-teaser__card-inner p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ============================================================
   ATTRACTIONS PAGE
   ============================================================ */
.attractions-page { background: var(--ivory); }
.attractions-page__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}
.attractions-page__lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.95;
  margin-bottom: 16px;
}
.attractions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}
.attraction-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s;
}
.attraction-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.attraction-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.attraction-card__img img, .attraction-card__img video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}
.attraction-card:hover .attraction-card__img img,
.attraction-card:hover .attraction-card__img video { transform: scale(1.06); }

/* Color backgrounds for attractions without photos */
.attraction-card__img--bio {
  background: linear-gradient(135deg, #001a3a 0%, #003355 40%, #005470 60%, #002a40 100%);
  position: relative;
}
.attraction-card__img--bio::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,200,255,0.3) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 40%, rgba(0,150,255,0.25) 0%, transparent 50%);
  animation: bioBay 4s ease-in-out infinite;
}
@keyframes bioBay { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.attraction-card__img--forest {
  background: linear-gradient(160deg, #0a2d0a 0%, #1a4d1a 40%, #2d6b2d 70%, #0d3d0d 100%);
}
.attraction-card__img--oldcity {
  background: linear-gradient(160deg, #2d1a4d 0%, #4d2d7a 40%, #6b3d9e 60%, #3d1a6b 100%);
}
.attraction-card__img--ponce {
  background: linear-gradient(160deg, #4d1a00 0%, #7a3200 40%, #9e4a0a 60%, #6b2d00 100%);
}
.attraction-card__img--caves {
  background: linear-gradient(160deg, #0d0d1a 0%, #1a1a33 40%, #2d2d55 60%, #0d0d2d 100%);
}

.attraction-card__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(10,60,70,0.88);
  color: rgba(255,255,255,0.95);
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.attraction-card__body { padding: 24px; }
.attraction-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ocean-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}
.attraction-card__body p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 10px;
}
.attraction-card__distance {
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  color: var(--sunset) !important;
  letter-spacing: 0.04em;
}

/* Attractions CTA card */
.attractions-page__cta { margin-top: 10px; }
.attractions-cta-card {
  background: var(--ocean-deep);
  border-radius: 4px;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.attractions-cta-card__text { flex: 1; }
.attractions-cta-card__text .section__eyebrow { color: rgba(255,200,80,0.9); }
.attractions-cta-card__text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.attractions-cta-card__text h3 em { font-style: italic; color: rgba(255,210,100,0.9); }
.attractions-cta-card__text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
  max-width: 500px;
}
.attractions-cta-card__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

/* ============================================================
   TAINO SECTION — Rebuilt clean
   No scroll-reveal on symbols. No rotation in keyframe.
   Mobile: animation completely off via media query.
   Desktop: gentle float only, no rotation.
   ============================================================ */

/* ── Section shell ── */
.taino {
  position: relative;
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  overflow: hidden;
}
.taino__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0a1a2a 0%, #0d2d3a 40%, #1a4444 70%, #0a2020 100%);
}
.taino__bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(77,168,184,0.09) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,146,42,0.07) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(45,106,47,0.08) 0%, transparent 40%);
}

/* ── Inner layout: text left, symbols right ── */
.taino__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  /* No overflow:hidden — was clipping scroll-reveal children on mobile */
}

/* ── Text side ── */
.taino__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  line-height: 2;
  letter-spacing: 0.02em;
}
.taino__desc em { color: rgba(255,210,100,0.9); font-style: italic; }

/* ── Symbols side ── */
.taino__symbols {
  /* Static element — no scroll-reveal class, no transform, just renders */
}
.taino__symbol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.taino__symbol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

/* ── SVG icon wrapper — controls size, animation lives here only on desktop ── */
.taino__symbol-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}
.taino__symbol-icon svg {
  width: 100%;
  height: 100%;
  /* Desktop-only float animation — applied via @media min-width below */
  display: block;
}

.taino__symbol-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ── Desktop float animation — ONLY applied above 768px ── */
@media (min-width: 769px) {
  .taino__symbol-icon svg {
    animation: tainoFloat 7s ease-in-out infinite;
    will-change: transform;
  }
  .taino__symbol:nth-child(2) .taino__symbol-icon svg { animation-delay: 1.75s; }
  .taino__symbol:nth-child(3) .taino__symbol-icon svg { animation-delay: 3.5s; }
  .taino__symbol:nth-child(4) .taino__symbol-icon svg { animation-delay: 5.25s; }
}

/* Pure vertical float — no rotation, which caused layout thrashing */
@keyframes tainoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ============================================================
   NONPROFIT PAGE
   ============================================================ */
.nonprofit-page { background: var(--ivory); }
.nonprofit-page__intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 70px;
}
.nonprofit-page__lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.95;
  margin-bottom: 18px;
}

.nonprofit-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 90px;
}
.nonprofit-pillar-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  border-top: 3px solid var(--palm-light);
  transition: transform 0.4s var(--ease-silk), box-shadow 0.4s;
}
.nonprofit-pillar-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,0.11); }
.nonprofit-pillar-card__icon { font-size: 2rem; margin-bottom: 16px; }
.nonprofit-pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--palm);
  margin-bottom: 12px;
}
.nonprofit-pillar-card p {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.8;
}

.nonprofit-page__expect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 90px;
}
.nonprofit-page__desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.9;
}
.nonprofit-page__includes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nonprofit-page__include {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--body-text);
}
.nonprofit-page__include span { color: var(--palm-light); font-size: 0.7rem; }
.nonprofit-page__expect-img {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13);
}
.nonprofit-page__expect-img img { width: 100%; height: auto; display: block; }

/* Nonprofit Form */
.nonprofit-page__form { margin-bottom: 90px; }
.nonprofit-form-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}
.nonprofit-form-header__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--soft-text);
  line-height: 1.8;
}
.nonprofit-form-wrap { max-width: 820px; margin: 0 auto; }
.form-card--nonprofit { border-top: 4px solid var(--palm-light); }

/* FAQ */
.nonprofit-faq { max-width: 780px; margin: 0 auto; }
.nonprofit-faq__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ocean-deep);
  margin-bottom: 36px;
}
.nonprofit-faq__title em { font-style: italic; color: var(--sunset); }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--body-text);
  letter-spacing: 0.03em;
  text-align: left;
  gap: 20px;
  transition: color 0.3s;
}
.faq-item__question:hover { color: var(--ocean); }
.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 200;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-silk);
}
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-silk), padding 0.4s;
}
.faq-item__answer.open { max-height: 300px; padding-bottom: 22px; }
.faq-item__answer p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.85;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 44px;
  box-shadow: 0 8px 50px rgba(0,0,0,0.09);
}
.form-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--ocean-deep);
  margin-bottom: 8px;
}
.form-card__sub {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--soft-text);
  margin-bottom: 32px;
}
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__group label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-text);
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--body-text);
  background: var(--sand-light);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  appearance: none;
  width: 100%;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 3px rgba(77,168,184,0.14);
  background: var(--white);
}
.form__group textarea { resize: vertical; }
.form__checkbox-group { display: flex; align-items: flex-start; gap: 12px; }
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--body-text);
  cursor: pointer;
  line-height: 1.6;
}
.form__checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--ocean);
}
.form__success {
  display: none;
  padding: 16px 20px;
  background: rgba(31,82,33,0.08);
  border: 1px solid rgba(31,82,33,0.2);
  border-radius: 2px;
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--palm);
  text-align: center;
  line-height: 1.6;
}
.form__success.visible { display: block; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact { background: var(--sand-light); }
.contact__header { text-align: center; margin-bottom: 60px; }
.contact__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid-text);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}
.contact__content { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon { font-size: 1.4rem; flex-shrink: 0; width: 36px; text-align: center; }
.contact__info-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-text);
  margin-bottom: 4px;
}
.contact__info-item p, .contact__info-item a {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--body-text);
  line-height: 1.7;
}
.contact__info-item a:hover { color: var(--ocean); }
.contact__nonprofit-cta {
  padding: 20px;
  background: var(--nonprofit-light);
  border-radius: 4px;
  border-left: 3px solid var(--nonprofit-green);
}
.contact__nonprofit-cta p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--palm);
  margin-bottom: 12px;
}
.contact__map { border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.09); }



/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); padding: 80px clamp(20px, 5vw, 60px) 0; }
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--sand-light);
  line-height: 1.1;
  margin-bottom: 14px;
}
.footer__logo em { display: block; font-style: italic; color: rgba(255,210,100,0.75); }
.footer__tagline {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}
.footer__address {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__nav h4, .footer__services h4, .footer__contact h4 {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer__nav ul, .footer__services ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a, .footer__services li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  transition: color 0.3s;
}
.footer__nav a:hover { color: rgba(255,210,100,0.85); }
.footer__contact p, .footer__contact a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  transition: color 0.3s;
}
.footer__contact a:hover { color: rgba(255,210,100,0.85); }
.footer__coqui { margin-top: 20px; width: 60px; opacity: 0.4; }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 30px 0 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}
.footer__bottom em { color: rgba(150,220,100,0.55); font-style: italic; }
.footer__disclaimer {
  font-size: 0.68rem !important;
  color: rgba(255,255,255,0.25) !important;
  max-width: 640px;
  line-height: 1.6;
}
.footer__credit {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.38) !important;
}
.footer__credit a {
  color: rgba(255,210,100,0.6) !important;
  transition: color 0.3s;
  text-decoration: none;
}
.footer__credit a:hover { color: rgba(255,210,100,0.9) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .attractions__grid { grid-template-columns: 1fr 1fr; }
  .nonprofit-pillars-grid { grid-template-columns: 1fr 1fr; }
  .attractions-cta-card { flex-direction: column; padding: 50px 40px; gap: 36px; }
  .attractions-cta-card__actions { flex-direction: row; }
}

@media (max-width: 1024px) {
  .intro-band__inner { grid-template-columns: 1fr 1fr; }
  .intro-band__divider:nth-child(4) { display: none; }
  .intro-band__divider { width: 1px; height: 60px; }
  .stay .section__inner { grid-template-columns: 1fr; gap: 50px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .attractions-teaser__inner { grid-template-columns: 1fr; gap: 50px; }
  .taino__inner { grid-template-columns: 1fr; gap: 50px; }
  .contact__content { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nonprofit-page__expect { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(253,248,240,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px 30px 40px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-top: 1px solid rgba(0,0,0,0.07);
  }
  .nav__links.open { display: flex; }
  .nav__link { color: var(--charcoal) !important; font-size: 0.88rem; }
  .nonprofit-link { align-self: flex-start; }
  .nav__hamburger { display: flex; }

  .hero__title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__content { margin-bottom: 100px; }
  .hero__coqui { display: none; }

  .intro-band__inner { grid-template-columns: 1fr; }
  .intro-band__divider { width: 40%; height: 1px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .attractions__grid { grid-template-columns: 1fr; }
  .nonprofit-pillars-grid { grid-template-columns: 1fr 1fr; }
  /* Taino on mobile — single column stack, symbols centered, NO animation */
  .taino__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .taino__symbol-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 320px;
    margin: 0 auto;
  }
  .taino__symbol-icon {
    width: 70px;
    height: 70px;
  }
  /* Guarantee no animation on mobile — belt and suspenders with min-width above */
  .taino__symbol-icon svg {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
  .form__row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .stay__features { grid-template-columns: 1fr; }
  .attractions-teaser__grid { grid-template-columns: 1fr 1fr; }
  .attractions-cta-card { padding: 36px 24px; }
  .attractions-cta-card__actions { flex-direction: column; }


  /* ── Scroll-reveal: opacity fade only on mobile, no translateY movement.
     The ease-silk cubic-bezier(0.16,1,0.3,1) starts near-vertical, 
     making any translateY appear to snap/shoot on small screens. ── */
  .scroll-reveal {
    transform: none !important;
    transition: opacity 0.6s ease-out !important;
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: none !important;
  }

  /* ── Taino symbols: absolutely no animation on mobile ── */
  .taino__symbol-icon svg {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

@media (max-width: 520px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .nonprofit-pillars-grid { grid-template-columns: 1fr; }
  .attractions-teaser__grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

