/* Volcanic Tours — sistema de diseño en CSS puro (sin framework) */

:root {
  --bg-900: oklch(0.18 0.05 245);
  --bg-850: oklch(0.20 0.05 245);
  --bg-800: oklch(0.22 0.05 245);
  --bg-700: oklch(0.24 0.06 245);
  --bg-650: oklch(0.24 0.055 245);
  --bg-600: oklch(0.28 0.06 245);
  --bg-500: oklch(0.32 0.07 245);

  --cyan: oklch(0.72 0.12 195);
  --cyan-bright: oklch(0.85 0.09 195);
  --cyan-deep: oklch(0.55 0.14 195);
  --gold: oklch(0.78 0.14 60);
  --orange: oklch(0.68 0.18 55);
  --red: oklch(0.65 0.2 30);
  --purple: oklch(0.45 0.1 280);
  --green: oklch(0.7 0.18 155);

  --text: #fff;
  --text-1: oklch(0.92 0.02 200);
  --text-2: oklch(0.9 0.02 200);
  --text-3: oklch(0.88 0.02 200);
  --text-4: oklch(0.85 0.02 200);
  --text-muted: oklch(0.7 0.04 200);
  --text-dim: oklch(0.55 0.02 200);

  --border: oklch(1 0 0 / 0.08);
  --border-soft: oklch(1 0 0 / 0.06);
  --border-cyan: oklch(0.72 0.12 195 / 0.2);

  --font-body: "DM Sans", sans-serif;
  --font-head: "Cormorant Garamond", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-500);
  color: var(--text-1);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 500;
  margin: 0;
  color: var(--text);
}

p {
  margin: 0;
}

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

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

button {
  font-family: var(--font-body);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

em.accent {
  font-style: italic;
  color: var(--cyan);
}

/* ---------- Reveal on scroll ---------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section labels / titles ---------- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 1rem 2.2rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease;
}
.btn:hover {
  transform: scale(1.02);
}
.btn-primary {
  background: #fff;
  color: var(--bg-900);
}
.btn-ghost {
  background: linear-gradient(135deg, oklch(1 0 0 / 0.06), oklch(1 0 0 / 0.02));
  color: #fff;
  border: 1px solid oklch(0.85 0.09 195 / 0.55);
  backdrop-filter: blur(8px);
}
.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-deep));
  color: oklch(0.15 0.04 245);
}
.btn-outline-cyan {
  background: oklch(1 0 0 / 0.06);
  color: oklch(0.92 0.06 195);
  border: 1px solid oklch(0.72 0.12 195 / 0.4);
}
.btn-sm {
  font-size: 0.7rem;
  padding: 0.75rem 1.6rem;
}

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(to bottom, oklch(0.18 0.04 245 / 0.55), oklch(0.18 0.04 245 / 0.25));
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 2px 12px oklch(0 0 0 / 0.18);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: oklch(0.22 0.05 245 / 0.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 24px oklch(0 0 0 / 0.35);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 5rem;
}
.navbar-brand > div {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.navbar-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid oklch(0.72 0.12 195 / 0.4);
}
.navbar-brand-name {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
  color: #fff;
  line-height: 1.2;
}
.navbar-brand-sub {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: nowrap;
}
.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: nowrap;
}
.weather-widget {
  width:120px;
  display: none;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem 0.2rem 0.2rem;
  border-radius: 999px;
  background: oklch(0.22 0.05 245 / 0.6);
  border: 2px solid oklch(1 0 0 / 0.15);
  margin-left: 1.5rem;
}
.weather-widget-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan-deep);
  color: #fff;
  flex-shrink: 0;
  line-height: 0;
}
.weather-widget-icon svg {
  display: block;
}
.weather-widget-wind {
  font-weight: 600;
  font-size: 0.6875rem;
  color: #fff;
  line-height: 1.2;
}
.weather-widget-sea {
  font-size: 0.5rem;
  color: var(--text-4);
}
.lang-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: oklch(1 0 0 / 0.08);
  border: 1px solid oklch(1 0 0 / 0.2);
  cursor: pointer;
}
.lang-toggle .dim {
  opacity: 0.5;
}
.lang-toggle-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(1 0 0 / 0.2);
  cursor: pointer;
}
.navbar-book {
  display: none;
}
.navbar-socials {
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.75rem;
  margin-left: 0.25rem;
  border-left: 1px solid oklch(1 0 0 / 0.15);
}
.navbar-socials a {
  color: oklch(1 0 0 / 0.95);
  transition: transform 0.2s ease, color 0.2s ease;
}
.navbar-socials a:hover {
  color: #fff;
  transform: translateY(-2px);
}
.navbar-burger {
  background: none;
  border: none;
  color: #fff;
  padding: 0.25rem;
  cursor: pointer;
  display: inline-flex;
}
.navbar-mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: oklch(0.22 0.05 245 / 0.98);
  backdrop-filter: blur(24px);
}
.navbar-mobile-menu.open {
  display: block;
}
.navbar-mobile-menu .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.navbar-mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  border-bottom: 1px solid var(--border);
}
.navbar-mobile-link .arrow {
  color: var(--cyan);
  font-size: 0.75rem;
}
.navbar-mobile-book {
  margin-top: 1.5rem;
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem;
  font-size: 0.75rem;
  background: var(--cyan);
  color: var(--bg-900);
  box-shadow: 0 8px 24px -8px oklch(0.72 0.12 195 / 0.5);
}
.navbar-mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.navbar-mobile-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-500);
  color: #fff;
}

@media (min-width: 640px) {
  .lang-toggle {
    display: inline-flex;
  }
  .lang-toggle-mobile {
    display: none;
  }
  .navbar-book {
    display: inline-flex;
  }
}
@media (min-width: 768px) {
  .weather-widget {
    display: flex;
  }
  .navbar-socials {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .navbar-links {
    display: flex;
  }
  .navbar-burger,
  .navbar-mobile-menu {
    display: none !important;
  }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0 0 0 / 0.35) 0%,
    oklch(0 0 0 / 0.15) 35%,
    oklch(0 0 0 / 0.55) 75%,
    var(--bg-500) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 720px;
  padding: 0 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  background: oklch(0 0 0 / 0.35);
  border: 1px solid oklch(1 0 0 / 0.18);
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan-bright);
}
.hero-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: oklch(0.92 0.06 195);
}
.hero-subtitle {
  color: oklch(1 0 0 / 0.8);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 38rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.hero-socialrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  margin-top: 3.5rem;
}
.hero-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-social-google-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px oklch(0 0 0 / 0.3);
}
.hero-social-stars {
  display: flex;
  gap: 1px;
  color: #fbbc04;
}
.hero-social-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: oklch(1 0 0 / 0.8);
  margin-top: 0.2rem;
}
.hero-social img {
  height: 56px;
  width: auto;
}
.hero-ta-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.2;
}
.hero-scroll-cta {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: oklch(1 0 0 / 0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===================================================================
   GENERIC SECTION SHELLS
   =================================================================== */
.section {
  padding: 6rem 0;
}
.section-bg-900 { background: var(--bg-900); }
.section-bg-850 { background: var(--bg-850); }
.section-bg-700 { background: var(--bg-700); }
.section-bg-600 { background: var(--bg-600); }
.section-bg-500 { background: var(--bg-500); }
.section-head {
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.section-head.center {
  text-align: center;
}
.section-rule {
  width: 56px;
  height: 1px;
  background: oklch(1 0 0 / 0.3);
  margin-top: 1.5rem;
}
.section-rule.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================================
   WEATHER SECTION (home)
   =================================================================== */
.weather-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .weather-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.weather-panel {
  border-radius: 1rem;
  padding: 1.75rem;
  background: oklch(0.24 0.06 245 / 0.6);
  border: 1px solid var(--border-soft);
}
.weather-panel-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.weather-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: oklch(0.7 0.18 155 / 0.15);
}
.weather-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.weather-pill-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
}
.weather-value {
  color: #fff;
  font-weight: 300;
  font-size: 5.5rem;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.weather-value span {
  font-size: 1.5rem;
  color: var(--text-4);
}
.weather-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 0.25rem;
}
.weather-location {
  color: #fff;
  font-size: 0.875rem;
}
.weather-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border-soft);
}
.weather-stat-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.weather-stat-value {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
}
.weather-cta {
  margin-top: 1.5rem;
}
.weather-updated {
  margin-top: 0.75rem;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-4);
}
.weather-updated a {
  color: var(--cyan-bright);
  text-decoration: underline;
}
.forecast-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.forecast-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.forecast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background: oklch(0.32 0.07 245 / 0.5);
  border: 1px solid oklch(1 0 0 / 0.04);
}
.forecast-day {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 6rem;
}
.forecast-day-label {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-4);
}
.forecast-day-num {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}
.forecast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-500);
  flex-shrink: 0;
}
.forecast-wind {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 300;
}
.forecast-note {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  border-radius: 0.5rem;
  padding: 0.75rem;
  background: oklch(0.32 0.07 245 / 0.5);
  border: 1px solid oklch(1 0 0 / 0.04);
}
.forecast-note-icon {
  width: 28px;
  height: 28px;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.72 0.12 195 / 0.15);
  color: var(--cyan);
  flex-shrink: 0;
}
.forecast-note p {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--text-3);
}

/* ===================================================================
   STEPS (Cómo reservar)
   =================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6rem 2.5rem;
  }
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .step {
    align-items: flex-start;
    text-align: left;
  }
}
.step-icon-wrap {
  position: relative;
  margin-bottom: 3.5rem;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(0.28 0.07 245), oklch(0.22 0.06 245));
  border: 1px solid oklch(0.72 0.12 195 / 0.35);
  color: var(--cyan-bright);
}
.step-num {
  position: absolute;
  top: -8px;
  right: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  background: #fff;
  color: var(--bg-900);
}
.step h3 {
  font-family: var(--font-body);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.75rem;
}
.step p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* ===================================================================
   RESERVATION BANNER
   =================================================================== */
.reservation-banner {
  position: relative;
  overflow: hidden;
}
.reservation-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reservation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    oklch(0.16 0.05 245 / 0.6) 0%,
    oklch(0.2 0.06 245 / 0.7) 50%,
    oklch(0.18 0.05 245 / 0.85) 100%
  );
}
.reservation-inner {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  color: #fff;
}
.res-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(0.78 0.14 60 / 0.4);
}
.res-badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: oklch(0.92 0.1 60);
}
.res-title {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.res-title em {
  font-style: italic;
  background: linear-gradient(135deg, oklch(0.92 0.12 195), oklch(0.85 0.14 60));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.res-subtitle {
  max-width: 36rem;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-2);
}
.res-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem auto;
  max-width: 64rem;
}
@media (min-width: 768px) {
  .res-methods {
    grid-template-columns: repeat(3, 1fr);
  }
}
.res-method {
  position: relative;
  padding: 1.75rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(165deg, oklch(0.26 0.06 245 / 0.85), oklch(0.2 0.05 245 / 0.7));
  border: 1px solid oklch(1 0 0 / 0.12);
  backdrop-filter: blur(14px) saturate(140%);
}
@media (min-width: 768px) {
  .res-method {
    text-align: left;
  }
}
.res-method-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, oklch(0.55 0.14 195 / 0.4), oklch(0.32 0.07 245 / 0.6));
  border: 1px solid oklch(0.72 0.12 195 / 0.45);
  color: oklch(0.92 0.08 195);
}
@media (min-width: 768px) {
  .res-method-icon {
    margin: 0 0 1.25rem;
  }
}
.res-method h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.res-method p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}
.res-method-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
}
.res-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .res-info {
    grid-template-columns: 1fr 1fr;
  }
}
.res-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: oklch(0.2 0.05 245 / 0.55);
  border: 1px solid oklch(1 0 0 / 0.08);
}
.res-info-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.72 0.12 195 / 0.15);
  border: 1px solid oklch(0.72 0.12 195 / 0.3);
  color: oklch(0.85 0.1 195);
}
.res-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.res-info-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-3);
}

/* ===================================================================
   BOAT SECTION
   =================================================================== */
.boat-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .boat-top {
    grid-template-columns: 1fr 1fr;
  }
}
.boat-gallery {
  position: relative;
}
.boat-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.boat-gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2px;
}
.boat-gallery-grid .full {
  grid-column: span 2;
  height: 260px;
}
.boat-years-badge {
  /*position: absolute;*/
  bottom: -1.5rem;
  right: -1.25rem;
  padding: 1.1rem 1.5rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, oklch(0.22 0.05 245 / 0.55), oklch(0.18 0.04 245 / 0.45));
  border: 1px solid oklch(0.85 0.09 195 / 0.25);
  backdrop-filter: blur(8px);
}
.boat-years-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: oklch(0.88 0.1 195);
  letter-spacing: -0.04em;
}
.boat-years-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, oklch(0.85 0.09 195 / 0.5), transparent);
}
.boat-years-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: oklch(0.72 0.08 200 / 0.8);
}
.boat-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .boat-features {
    grid-template-columns: 1fr 1fr;
  }
}
.feature-card,
.value-card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--bg-650);
  border: 1px solid var(--border-cyan);
  box-shadow: 0 6px 20px -8px oklch(0 0 0 / 0.4);
}
.feature-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, oklch(0.55 0.14 195 / 0.35), oklch(0.32 0.07 245 / 0.6));
  border: 1px solid oklch(0.72 0.12 195 / 0.4);
  color: oklch(0.92 0.06 195);
}
.feature-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.feature-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-2);
}
.boat-arrive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .boat-arrive-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.office-photo {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  min-height: 260px;
  box-shadow: 0 18px 50px -12px oklch(0 0 0 / 0.55);
}
.office-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.office-photo-badge {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(to top, oklch(0.18 0.04 245 / 0.92), transparent);
}
.office-photo-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: 2px;
  background: var(--gold);
  color: var(--bg-900);
}
.office-card {
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: var(--bg-650);
  border: 1px solid var(--border-cyan);
}
.office-card p.body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.office-map {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0.75rem;
  margin-bottom: 1.25rem;
}
.office-chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .office-chips {
    grid-template-columns: repeat(3, 1fr);
  }
}
.office-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.375rem;
  background: var(--bg-500);
  border: 1px solid oklch(0.72 0.12 195 / 0.15);
  color: var(--cyan-bright);
}
.office-chip.call {
  background: var(--gold);
  border-color: oklch(0.78 0.14 60 / 0.5);
  color: var(--bg-900);
}
.office-chip-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}
.office-chip.call .office-chip-label {
  color: var(--bg-900);
}
.office-chip-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.office-chip.call .office-chip-value {
  color: var(--bg-900);
}
.arrive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .arrive-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .arrive-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.arrive-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--bg-650);
  border: 1px solid var(--border-cyan);
  box-shadow: 0 6px 20px -8px oklch(0 0 0 / 0.4);
}
.arrive-card h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin: 1rem 0 0.5rem;
}
.arrive-card p {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-2);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-top: 1.5rem;
}

/* ===================================================================
   ABOUT SECTION
   =================================================================== */
.about-hero {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4rem;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-500) 0%, oklch(0 0 0 / 0.4) 50%, transparent 100%);
}
.about-hero-content {
  position: relative;
  z-index: 10;
  padding: 2.5rem;
  max-width: 42rem;
}
.about-hero-content p.body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-4);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-card {
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, oklch(0.26 0.055 245), oklch(0.22 0.05 245));
  border: 1px solid var(--border-cyan);
  box-shadow: 0 24px 60px -24px oklch(0 0 0 / 0.55);
}
.about-card-photo {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.about-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.22 0.05 245) 0%, oklch(0.22 0.05 245 / 0.3) 45%, transparent 80%);
}
.about-card-pill {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  background: oklch(0 0 0 / 0.35);
  border: 1px solid oklch(1 0 0 / 0.15);
  backdrop-filter: blur(8px);
}
.about-card-pill span {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.about-card-photo-title {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
}
.about-card-photo-title em {
  font-style: italic;
  color: var(--cyan-bright);
}
.about-card-photo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  color: oklch(1 0 0 / 0.8);
}
.about-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.about-card-body p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: oklch(0.94 0.015 200);
  margin-bottom: 1rem;
}
.about-quote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: oklch(0.32 0.07 245 / 0.6);
  color: oklch(0.92 0.05 195);
  border: 1px solid oklch(0.72 0.12 195 / 0.25);
}
.sea-life-box {
  margin-top: auto;
  padding: 1rem;
  border-radius: 1rem;
  background: oklch(0.18 0.04 245 / 0.6);
  border: 1px solid oklch(0.72 0.12 195 / 0.12);
}
.sea-life-box .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.sea-life-box p {
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--text-1);
  margin: 0;
}
.values-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.value-card {
  padding: 0.75rem;
  background: oklch(0.18 0.04 245 / 0.6);
  border: 1px solid oklch(0.72 0.12 195 / 0.12);
  box-shadow: none;
  border-radius: 0.75rem;
}
.value-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.value-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(0.72 0.12 195 / 0.18);
  color: var(--cyan-bright);
}
.value-card h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.value-card p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-2);
  padding-left: 2rem;
  margin: 0;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--bg-650);
  border: 1px solid var(--border);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.testimonial h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}
.testimonial p.body {
  font-size: 0.875rem;
  line-height: 1.6;
  color: oklch(0.68 0.03 200);
  margin-bottom: 1.5rem;
  flex: 1;
}
.testimonial hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0 0 1rem;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.testimonial-who {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--bg-500);
  color: var(--cyan-bright);
  border: 1px solid var(--border-cyan);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.testimonial-contrib {
  font-size: 11px;
  color: var(--text-dim);
}
.testimonial-foot {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* ===================================================================
   CERTIFICATIONS
   =================================================================== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .certs-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--bg-650);
  border: 1px solid var(--border-cyan);
  transition: transform 0.3s ease;
}
.cert-card:hover {
  transform: translateY(-4px);
}
.cert-logo {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.cert-logo.boost {
  width: 128px;
  height: 128px;
}
.cert-logo.white-box {
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.75rem;
}
.cert-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cert-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.cert-note {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-top: 0.375rem;
}

/* ===================================================================
   LEAVE REVIEW
   =================================================================== */
.leave-review {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.leave-review h2 {
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1.25rem;
}
.leave-review p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.leave-review .foot {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-top: 1.5rem;
}

/* ===================================================================
   FAQ
   =================================================================== */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.faq-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: oklch(0.24 0.05 245 / 0.6);
  color: var(--text-3);
  border: 1px solid var(--border);
  cursor: pointer;
}
.faq-tab.active {
  background: linear-gradient(135deg, oklch(0.72 0.12 195 / 0.25), oklch(0.55 0.14 195 / 0.18));
  color: oklch(0.95 0.09 195);
  border: 1px solid oklch(0.72 0.12 195 / 0.55);
  box-shadow: 0 8px 20px -10px oklch(0.55 0.14 195 / 0.6);
}
.faq-group {
  display: none;
}
.faq-group.active {
  display: block;
}
.faq-item {
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: oklch(0.22 0.05 245 / 0.4);
  border: 1px solid var(--border-soft);
  transition: background 0.3s, border-color 0.3s;
}
.faq-item.open {
  background: oklch(0.24 0.05 245 / 0.7);
  border: 1px solid oklch(0.72 0.12 195 / 0.35);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(0.72 0.12 195 / 0.4);
  color: oklch(0.85 0.1 195);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-toggle {
  background: oklch(0.72 0.12 195 / 0.25);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
}
.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: oklch(0.92 0.015 200);
}
.faq-contact-box {
  margin-top: 4rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.75rem;
  border-radius: 1rem;
  text-align: center;
  background: linear-gradient(135deg, oklch(0.24 0.05 245 / 0.8), oklch(0.2 0.05 245 / 0.6));
  border: 1px solid oklch(0.72 0.12 195 / 0.25);
}
.faq-contact-box p {
  font-size: 0.875rem;
  color: var(--text-1);
  margin-bottom: 1.25rem;
}
.faq-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.faq-contact-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--bg-700);
}
.footer-inner {
  padding: 5rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #fff;
}
.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-top: 0.125rem;
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-3);
  margin-bottom: 1.75rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-500);
  transition: transform 0.2s ease;
}
.footer-socials a:hover {
  transform: translateY(-2px);
}
.footer-sellos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 20rem;
}
.footer-sello {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  background: oklch(0.32 0.07 245 / 0.7);
  border: 1px solid var(--border-soft);
}
.footer-sello-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-sello-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.footer-sello-logo.white-box {
  background: #fff;
  border-radius: 0.25rem;
  padding: 2px;
}
.footer-sello-note {
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: var(--cyan-bright);
}
.footer-sello-name {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: oklch(0.96 0.01 200);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-col ul a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--text-1);
}
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-contact-block .label {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  margin-bottom: 0.375rem;
}
.footer-contact-block a,
.footer-contact-block span {
  font-size: 0.875rem;
  color: #fff;
}
.footer-book-card {
  padding: 1.75rem;
  border-radius: 1rem;
  background: oklch(0.32 0.07 245 / 0.6);
  border: 1px solid var(--border-soft);
  align-self: start;
}
.footer-book-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}
.footer-book-card a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: #fff;
  color: var(--bg-900);
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer-bottom p {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-4);
}
.footer-legal-links {
  display: flex;
  gap: 1.75rem;
}
.footer-legal-links a {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-4);
}
.footer-legal-links a:hover {
  color: #fff;
}

/* ===================================================================
   RECORRIDOS PAGE
   =================================================================== */
.routes-map {
  margin-bottom: 2rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.routes-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .routes-cards {
    grid-template-columns: 1fr 1fr;
  }
}
.route-dir-card {
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: oklch(0.25 0.05 245);
}
.route-dir-photo {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.route-dir-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.route-dir-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.25 0.05 245) 0%, transparent 60%);
}
.route-dir-body {
  padding: 1.5rem;
}
.route-dir-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.route-dir-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}
.route-dir-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.route-dir-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.route-dir-calas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.route-dir-cala {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 2px;
  background: oklch(0.22 0.05 245);
  color: var(--text-1);
}
.routes-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-4);
  margin-top: 1.5rem;
}
.category-block {
  margin-top: 5rem;
}
.route-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .route-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .route-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.route-card {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--bg-800);
}
.route-card-photo {
  position: relative;
  height: 208px;
  overflow: hidden;
}
.route-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.route-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--bg-650) 100%);
}
.route-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.route-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}
.route-card-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}
.route-card-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.route-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 0.75rem;
}
.route-card-details {
  font-size: 0.75rem;
  line-height: 1.6;
  color: oklch(0.85 0 0);
  margin-bottom: 0.75rem;
}
.route-card-includes {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.route-card-includes div {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: #fff;
}
.route-card-includes svg {
  color: var(--cyan);
  margin-top: 2px;
  flex-shrink: 0;
}
.route-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #fff;
}
.route-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.route-card-meta svg {
  color: var(--cyan);
}
.route-card-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.route-card-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-bright);
}
.route-card-childprice {
  display: block;
  font-size: 0.75rem;
  color: #fff;
}
.route-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
}
.routes-includes-box {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 2px;
  text-align: center;
  background: oklch(0.25 0.05 245);
  border: 1px solid var(--border-cyan);
}
.routes-includes-box .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.routes-includes-box p {
  font-size: 0.75rem;
  color: #fff;
}
.routes-contact {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #fff;
}
.routes-contact a {
  color: var(--cyan);
  text-decoration: underline;
}

/* ===================================================================
   TERAPIAS PAGE
   =================================================================== */
.therapy-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .therapy-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.therapy-gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--bg-800);
  margin: 0;
}
.therapy-gallery img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapy-gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: #fff;
  background: linear-gradient(to top, oklch(0.15 0.05 245 / 0.85), transparent);
}
.therapy-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.therapy-card {
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border-soft);
}
.therapy-card.reverse {
  flex-direction: row-reverse;
}
.therapy-card-img {
  position: relative;
  overflow: hidden;
  flex: 0 0 38%;
  max-height: 300px;
  min-height: 220px;
}
.therapy-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.therapy-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-600) 100%);
}
.therapy-card.reverse .therapy-card-img::after {
  background: linear-gradient(to left, transparent 60%, var(--bg-600) 100%);
}
.therapy-card-body {
  flex: 1 1 62%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
  background: var(--bg-650);
}
.therapy-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.therapy-name {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.875rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}
.therapy-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-1);
  margin-bottom: 1rem;
}
.therapy-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.therapy-price {
  font-family: var(--font-head);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cyan-bright);
}
.therapy-meta-info {
  font-size: 0.75rem;
  color: var(--text-3);
}
.therapy-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.therapy-expand {
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.therapy-card.open .therapy-expand {
  display: flex;
}
.therapy-expand .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
.therapy-expand ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.therapy-expand ul li {
  font-size: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--text-2);
}
.therapy-expand ul li::before {
  content: "·";
  color: var(--cyan);
}
.therapy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.therapy-tags span {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 2px;
  background: var(--bg-800);
  color: var(--text-1);
}
.therapy-tags.dates span {
  display: block;
}
.massage-type {
  padding: 0.75rem;
  border-radius: 2px;
  background: var(--bg-800);
  margin-bottom: 0.5rem;
}
.massage-type p.name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}
.massage-type p.desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-3);
}
.therapy-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-4);
}
.therapy-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
}
.yoga-promo {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 2px;
  text-align: center;
  background: var(--bg-650);
  border: 1px solid var(--border-soft);
}
.yoga-promo h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin: 0.5rem 0;
}
.yoga-promo p {
  font-size: 0.875rem;
  max-width: 32rem;
  margin: 0 auto 1rem;
  color: var(--text-1);
}
.yoga-promo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cyan);
}

@media (max-width: 640px) {
  .therapy-card,
  .therapy-card.reverse {
    flex-direction: column;
  }
  .therapy-card-img {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* ===================================================================
   LEGAL PAGES (privacidad / cookies)
   =================================================================== */
.legal-page {
  padding-top: 100px;
  background: var(--bg-900);
  min-height: 100vh;
}
.legal-hero {
  background: linear-gradient(180deg, oklch(0.14 0.05 245) 0%, oklch(0.22 0.06 245) 100%);
  padding: 48px 16px 56px;
  text-align: center;
}
.legal-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.legal-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.15;
}
.legal-hero h1 em {
  font-style: italic;
  color: var(--cyan);
}
.legal-hero p {
  margin-top: 16px;
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.7;
}
.legal-wrap {
  padding: 0 16px;
}
.legal-card {
  max-width: 700px;
  margin: -24px auto 0;
  background: var(--bg-650);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 32px 20px;
  box-shadow: 0 30px 80px -30px oklch(0 0 0 / 0.5);
}
.legal-card ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-card li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.legal-card li:last-child {
  margin-bottom: 0;
}
.legal-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-900);
  border: 1px solid oklch(0.72 0.12 195 / 0.5);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}
.legal-card h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin: 6px 0 8px;
}
.legal-card-body {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.7;
}
.legal-card-body a {
  text-decoration: underline;
  color: var(--cyan);
}
.legal-card-body ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.legal-card-body ul li {
  margin-bottom: 10px;
  display: block;
}
.legal-back {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  padding-bottom: 60px;
}
.legal-back a {
  text-decoration: underline;
  color: var(--cyan);
}
