/* ============================================================
   Rincón del Pacífico — Main Stylesheet
   Mobile-first, clean, minimal with tropical warmth
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --sand:       #F5F0E8;
  --sand-dark:  #EDE7D8;
  --ocean:      #1a4572;
  --ocean-light:#2a7093;
  --ocean-pale: #e8edf5;
  --warm-white: #fdf8f5;
  --text:       #1C1C1C;
  --text-muted: #666560;
  --text-light: #999690;
  --wa-green:   #25D366;
  --wa-dark:    #1DA851;
  --accent:     #E48B53;
  --accent-light:#F0D4B8;
  --border:     #E2D9CC;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
  --font-body:  'Montserrat', sans-serif;
  --font-ui:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:      1140px;
  --section-py: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  min-height: 100%;
}

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

ul {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  background: var(--ocean-pale);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: normal;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-wa {
  background: var(--wa-green);
  color: #fff;
}

.btn-wa:hover {
  background: var(--wa-dark);
}

.btn-call {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}

.btn-call-two {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-call:hover {
  background: var(--ocean);
  color: #fff;
}

.btn-call-two:hover {
  background: #ffffff;
  color: var(--ocean);
}

.btn-wa-outline {
  background: transparent;
  color: var(--wa-green);
  border: 2px solid var(--wa-green);
}

.btn-wa-outline:hover {
  background: var(--wa-green);
  color: #fff;
}

.btn-lg {
  padding: 17px 34px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: normal;
  color: var(--text);
}

.logo-location {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  gap: 4px;
}

.lang-switcher a {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}

.lang-switcher a:hover,
.lang-switcher a.active {
  background: var(--sand-dark);
  color: var(--text);
}

.header-wa {
  display: none;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0f1a42;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* IMAGE PLACEHOLDER — replace src with actual hero photo */
  background: linear-gradient(135deg, #5a2a12a5 0%, #72461ac2 40%, #93672ab4 100%);
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12, 45, 50, 0.82) 0%,
    rgba(12, 45, 50, 0.55) 60%,
    rgba(12, 45, 50, 0.20) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #fff;
  padding: 60px 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: normal;
}

.hero-title em {
  font-style: normal;
  color: #7facdc;
}

.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-price-hint {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

.hero-price-hint strong {
  color: #7facdc;
  font-size: 16px;
}

.hero .cta-group {
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.hero-trust-item svg {
  opacity: 0.8;
  flex-shrink: 0;
}

/* --- Benefits Strip --- */
.benefits-strip {
  background: var(--ocean);
  color: #fff;
  padding: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.benefit-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s;
}

.benefit-item:nth-child(even) {
  border-right: none;
}

.benefit-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.benefit-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
}

.benefit-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

/* --- Why Section --- */
.why-section {
  background: var(--warm-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand-dark);
}

/* IMAGE PLACEHOLDER — replace with hotel exterior or location photo */
.why-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sand-dark), var(--ocean-pale));
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  min-height: 280px;
}

.why-badge {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.why-badge strong {
  display: block;
  font-size: 20px;
}

.why-content {}

.why-points {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.why-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocean-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.why-point-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.why-point-text span {
  font-size: 14px;
  color: var(--text-muted);
}

/* --- Rooms Section --- */
.rooms-section {
  background: var(--sand);
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.room-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.room-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.room-img {
  aspect-ratio: 16/9;
  background: var(--sand-dark);
  position: relative;
}

/* IMAGE PLACEHOLDER — replace with room photos */
.room-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ocean-pale), var(--sand-dark));
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
  min-height: 200px;
}

.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ocean);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room-body {
  padding: 24px;
}

.room-title {
  font-family: var(--font-body);
  font-size: 20px;
  margin-bottom: 6px;
}

.room-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--sand);
  padding: 5px 10px;
  border-radius: 6px;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.room-price {}

.room-price-from {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 1px;
}

.room-price-amount {
  font-size: 26px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}

.room-price-night {
  font-size: 12px;
  color: var(--text-muted);
}

/* --- Location Section --- */
.location-section {
  background: var(--warm-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ocean-pale);
  /* MAP PLACEHOLDER — replace with Google Maps embed iframe */
}

.location-map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  min-height: 300px;
  background: linear-gradient(135deg, var(--ocean-pale), var(--sand-dark));
  text-align: center;
  padding: 20px;
}

.location-map-placeholder .map-pin {
  font-size: 40px;
}

.location-distances {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--sand);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.distance-item:hover {
  background: var(--sand-dark);
}

.distance-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.distance-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1px;
}

.distance-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.distance-time {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--ocean);
  white-space: nowrap;
  flex-shrink: 0;
}

.location-highlight {
  margin-top: 28px;
  padding: 20px;
  background: var(--ocean-pale);
  border-left: 3px solid var(--ocean);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 15px;
  color: var(--ocean);
  line-height: 1.6;
}

/* --- Social Proof --- */
.reviews-section {
  background: var(--sand);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.review-stars {
  color: #F5A623;
  font-size: 15px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-text::before {
  content: '"';
  font-size: 36px;
  color: var(--ocean-pale);
  font-family: var(--font-body);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocean-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--ocean);
  flex-shrink: 0;
}

.reviewer-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.reviewer-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.google-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-light);
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

.reviews-score {
  font-size: 42px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}

.reviews-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.reviews-meta span {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- FAQ --- */
.faq-section {
  background: var(--warm-white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.15s;
  user-select: none;
  width: 100%;
}

.faq-q:hover {
  color: var(--ocean);
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s, transform 0.2s;
  color: var(--ocean);
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--ocean);
  color: #fff;
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item.open .faq-a {
  display: block;
}

/* --- Final CTA Section --- */
.final-cta {
  background: var(--ocean);
  color: #fff;
  text-align: center;
}

.final-cta .section-title {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
}

.final-cta .section-sub {
  color: rgba(255,255,255,0.78);
}

.final-cta-box {
  max-width: 560px;
  margin: 0 auto;
}

.final-cta-details {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.70);
}

.cta-detail-item strong {
  font-size: 15px;
  color: #fff;
}

.final-cta .cta-group {
  justify-content: center;
  margin-bottom: 24px;
}

.final-cta .btn-call {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.final-cta .btn-call:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}

.final-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* --- Footer --- */
.site-footer {
  background: #0d1833;
  color: rgba(255,255,255,0.70);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo-name {
  font-family: var(--font-body);
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.68);
  transition: color 0.15s;
}

.footer-contact-item a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   Responsive — Tablet
   ============================================================ */
@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-item:nth-child(even) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .benefit-item:nth-child(3n) {
    border-right: none;
  }

  .benefit-item:nth-last-child(-n+3) {
    border-bottom: none;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Responsive — Desktop
   ============================================================ */
@media (min-width: 900px) {
  :root {
    --section-py: 96px;
  }

  .header-wa {
    display: inline-flex;
  }

  .benefits-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .benefit-item {
    flex-direction: column;
    gap: 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
  }

  .benefit-item:last-child {
    border-right: none;
  }

  .benefit-item:nth-child(even) {
    border-right: 1px solid rgba(255,255,255,0.12);
  }

  .benefit-item:last-child,
  .benefit-item:nth-child(5n) {
    border-right: none;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1140px) {
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header,
  .hero,
  .final-cta,
  .site-footer {
    display: none;
  }
}
