/* style.css - Custom Dark Theme: Andes Harvest & Arterial Elasticity */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@600;700;800;900&display=swap');

:root {
  --andina-midnight-dark: #0a0810;
  --andina-panel-surface: #120f1d;
  --andina-crimson-amaranth: #d61c59;
  --andina-gold-corn: #fca311;
  --andina-accent-gradient: linear-gradient(135deg, #d61c59 0%, #fca311 100%);
  --andina-body-text: #f1f0f5;
  --andina-muted-text: #a4a0b5;
  --andina-soft-radius: 16px;
  --andina-high-contrast: #ffffff;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --andina-raised-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  --andina-subtle-border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--andina-midnight-dark);
  color: var(--andina-body-text);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Animations */
.andina-scroll-reveal {
  animation: andina-fade-in-up linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

@keyframes andina-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--andina-high-contrast);
  line-height: 1.2;
}

p {
  line-height: 1.6;
  color: var(--andina-muted-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* HEADER STYLE - PRESET A (Sticky Dark) */
.andina-global-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--andina-panel-surface);
  border-bottom: 2px solid var(--andina-subtle-border);
  padding: 1.2rem 2rem;
}

.andina-topbar-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.andina-logo-presentation {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--andina-high-contrast);
}

.andina-logo-presentation svg {
  fill: var(--andina-crimson-amaranth);
}

/* Scroll Progress Tracker */
.andina-scroll-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  background: var(--andina-accent-gradient);
  width: 0;
  animation: andina-progress-grow linear;
  animation-timeline: scroll();
}

@keyframes andina-progress-grow {
  to { width: 100%; }
}

/* Navigation & Hamburger */
.andina-navigation-links-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.andina-navigation-anchor {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--andina-muted-text);
}

.andina-navigation-anchor:hover,
.andina-navigation-anchor.active {
  color: var(--andina-gold-corn);
}

/* CSS Hamburger Menu */
.andina-nav-trigger-checkbox {
  display: none;
}

.andina-nav-trigger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
}

.andina-nav-trigger-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--andina-high-contrast);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
  .andina-nav-trigger-label {
    display: flex;
  }

  .andina-navigation-links-box {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--andina-panel-surface);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: right 0.4s ease;
    z-index: 1005;
  }

  .andina-nav-trigger-checkbox:checked ~ .andina-navigation-links-box {
    right: 0;
  }

  .andina-nav-trigger-checkbox:checked ~ .andina-nav-trigger-label span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .andina-nav-trigger-checkbox:checked ~ .andina-nav-trigger-label span:nth-child(2) {
    opacity: 0;
  }

  .andina-nav-trigger-checkbox:checked ~ .andina-nav-trigger-label span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* HERO SECTION - PRESET A (Fullscreen overlay) */
.andina-hero-viewport {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 2rem 8rem 2rem;
}

.andina-hero-viewport::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 16, 0.65);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.andina-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.andina-hero-main-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: var(--andina-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.andina-hero-lead-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  color: var(--andina-body-text);
  font-weight: 300;
}

/* Pill Button Standard */
.andina-pill-cta-anchor {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: var(--andina-accent-gradient);
  color: var(--andina-high-contrast);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(214, 28, 89, 0.4);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.andina-pill-cta-anchor:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(214, 28, 89, 0.6);
}

/* FLOATING STATS PANEL - PRESET A */
.andina-floating-stats-panel {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.andina-stats-grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.andina-stat-entry {
  background-color: var(--andina-panel-surface);
  border: 1px solid var(--andina-subtle-border);
  border-radius: var(--andina-soft-radius);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: var(--andina-raised-shadow);
}

.andina-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--andina-accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.andina-stat-label {
  font-size: 1rem;
  color: var(--andina-high-contrast);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ZIGZAG NARRATIVE SECTIONS */
.andina-split-narrative-zone {
  padding: 8dvh 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.andina-split-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 8dvh;
}

.andina-split-row:nth-child(even) {
  flex-direction: row-reverse;
}

.andina-narrative-panel-content {
  flex: 1;
}

.andina-narrative-panel-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.andina-narrative-panel-content h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--andina-accent-gradient);
  border-radius: 2px;
}

.andina-narrative-panel-content p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.andina-narrative-graphic {
  flex: 1;
  height: 450px;
  overflow: hidden;
  border-radius: var(--andina-soft-radius);
  box-shadow: var(--andina-raised-shadow);
}

.andina-narrative-graphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slanted corners based on Preset A description */
.andina-slanted-right {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.andina-slanted-left {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 992px) {
  .andina-split-row,
  .andina-split-row:nth-child(even) {
    flex-direction: column;
    gap: 2.5rem;
  }
  .andina-narrative-graphic {
    width: 100%;
    height: 320px;
    clip-path: none !important;
  }
}

/* BENEFITS GRID - PRESET A */
.andina-vessel-benefits-grid {
  background-color: var(--andina-panel-surface);
  padding: 10dvh 2rem;
  border-top: 1px solid var(--andina-subtle-border);
  border-bottom: 1px solid var(--andina-subtle-border);
}

.andina-benefits-header-wrapper {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.andina-benefits-header-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.andina-cards-container-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.andina-benefit-card-wrapper {
  background-color: var(--andina-midnight-dark);
  border: 1px solid var(--andina-subtle-border);
  border-left: 4px solid var(--andina-crimson-amaranth);
  border-radius: var(--andina-soft-radius);
  padding: 2.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.andina-benefit-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--andina-raised-shadow);
  border-left-color: var(--andina-gold-corn);
}

.andina-benefit-icon-holder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(214, 28, 89, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.andina-benefit-icon-holder svg {
  fill: var(--andina-crimson-amaranth);
}

.andina-benefit-card-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--andina-high-contrast);
}

/* CHRONICLE TIMELINE (How It Works) */
.andina-chronicle-timeline-track {
  padding: 10dvh 2rem;
  position: relative;
}

.andina-timeline-header-container {
  max-width: 800px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.andina-timeline-header-container h2 {
  font-size: 2.5rem;
}

.andina-chronicle-line-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.andina-chronicle-line-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--andina-accent-gradient);
  transform: translateX(-50%);
}

.andina-chronicle-node-item {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
  justify-content: flex-end;
}

.andina-chronicle-node-item:nth-child(even) {
  justify-content: flex-start;
}

.andina-chronicle-center-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--andina-midnight-dark);
  border: 4px solid var(--andina-gold-corn);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--andina-high-contrast);
  z-index: 5;
}

.andina-chronicle-content-box {
  width: 45%;
  background-color: var(--andina-panel-surface);
  border: 1px solid var(--andina-subtle-border);
  border-radius: var(--andina-soft-radius);
  padding: 2rem;
  box-shadow: var(--andina-raised-shadow);
}

.andina-chronicle-content-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--andina-gold-corn);
}

@media (max-width: 768px) {
  .andina-chronicle-line-wrapper::before {
    left: 20px;
  }
  .andina-chronicle-node-item {
    justify-content: flex-end !important;
    padding-left: 50px;
  }
  .andina-chronicle-center-marker {
    left: 20px;
    transform: translateX(-50%);
  }
  .andina-chronicle-content-box {
    width: 100%;
  }
}

/* CTA STRIP */
.andina-banner-call-to-action {
  position: relative;
  padding: 10dvh 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.andina-banner-call-to-action::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 16, 0.8);
  z-index: 1;
}

.andina-banner-content-flow {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.andina-banner-content-flow h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.andina-banner-content-flow p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--andina-body-text);
}

/* EXPERT MINIMAL HERO */
.andina-expert-hero-panel {
  position: relative;
  padding: 8vh 2rem;
  background-size: cover;
  background-position: center;
  text-align: center;
  border-bottom: 1px solid var(--andina-subtle-border);
}

.andina-expert-hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 16, 0.85);
  z-index: 1;
}

.andina-expert-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.andina-expert-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

/* FORM STYLING - RESERVE.HTML */
.andina-booking-envelope {
  max-width: 650px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
  background-color: var(--andina-panel-surface);
  border: 1px solid var(--andina-subtle-border);
  border-radius: var(--andina-soft-radius);
  box-shadow: var(--andina-raised-shadow);
}

.andina-form-group-field {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.andina-form-group-field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--andina-gold-corn);
}

.andina-form-input,
.andina-form-textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background-color: var(--andina-midnight-dark);
  border: 1px solid var(--andina-subtle-border);
  border-radius: 8px;
  color: var(--andina-high-contrast);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.andina-form-input:focus,
.andina-form-textarea:focus {
  outline: none;
  border-color: var(--andina-crimson-amaranth);
  box-shadow: 0 0 8px rgba(214, 28, 89, 0.2);
}

.andina-checkbox-inline-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.andina-checkbox-inline-row input {
  margin-top: 4px;
}

.andina-checkbox-inline-row span {
  font-size: 0.9rem;
  color: var(--andina-muted-text);
  line-height: 1.4;
}

.andina-checkbox-inline-row a {
  text-decoration: underline;
  color: var(--andina-gold-corn);
}

.andina-submit-trigger {
  width: 100%;
  padding: 1.2rem;
  border: none;
  cursor: pointer;
}

/* FAQ ACCORDION STYLE */
.andina-faq-outer-holder {
  max-width: 800px;
  margin: 6rem auto;
  padding: 0 1.5rem;
}

.andina-faq-outer-holder h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.andina-faq-unfolded-card {
  background-color: var(--andina-panel-surface);
  border: 1px solid var(--andina-subtle-border);
  border-radius: var(--andina-soft-radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.andina-faq-question-title {
  color: var(--andina-high-contrast);
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
}

/* COOKIE BANNER */
.andina-cookie-shield-shelf {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--andina-panel-surface);
  border-top: 3px solid var(--andina-crimson-amaranth);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  display: none;
}

.andina-cookie-inner-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.andina-cookie-message-text {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
}

.andina-cookie-actions {
  display: flex;
  gap: 1rem;
}

.andina-cookie-btn-accept {
  padding: 0.8rem 2rem;
  background: var(--andina-accent-gradient);
  color: var(--andina-high-contrast);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
}

.andina-cookie-btn-decline {
  padding: 0.8rem 2rem;
  background: #252136;
  color: var(--andina-muted-text);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid var(--andina-subtle-border);
}

/* FOOTER STYLING */
.andina-global-bottombar {
  background-color: var(--andina-midnight-dark);
  border-top: 2px solid var(--andina-subtle-border);
  padding: 5rem 2rem 3rem 2rem;
  margin-top: auto;
}

.andina-footer-content-alignment {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.andina-disclaimer-notice {
  font-size: 0.85rem;
  color: var(--andina-muted-text);
  max-width: 800px;
  line-height: 1.5;
  border-top: 1px solid var(--andina-subtle-border);
  padding-top: 1.5rem;
}

.andina-legal-links-rack {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.andina-legal-link {
  font-size: 0.85rem;
  color: var(--andina-muted-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.andina-legal-link:hover {
  color: var(--andina-gold-corn);
}

.andina-copyright-phrase {
  font-size: 0.8rem;
  color: #5d5970;
}

/* LEGAL PAGES CUSTOM LAYOUT */
.andina-policy-parchment {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.andina-policy-parchment h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.andina-policy-parchment h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--andina-gold-corn);
}

.andina-policy-parchment p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}