/* Joe Rivers — identidad lujo: fondo oscuro, marfil, detalles dorados */
:root {
  /* Fondos */
  --bg-deep: #0a0e17;
  --bg-elevated: #111827;
  --bg-muted: #0f1419;
  --bg-card: #151c28;
  /* Texto */
  --ivory: #f5f0e8;
  --ivory-muted: #b8b3a8;
  /* Oro */
  --gold: #c9a227;
  --gold-light: #e4c76b;
  --gold-dim: #9a7b1c;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --border-gold: rgba(201, 162, 39, 0.45);
  --border-gold-soft: rgba(201, 162, 39, 0.2);
  /* Compatibilidad con reglas existentes */
  --blue-50: rgba(201, 162, 39, 0.1);
  --blue-100: rgba(201, 162, 39, 0.18);
  --blue-600: var(--gold);
  --blue-700: var(--gold-dim);
  --blue-800: #1a2332;
  --blue-900: #0d1219;
  --gray-50: var(--bg-muted);
  --gray-100: #1c2535;
  --gray-200: #2a3548;
  --gray-300: #3d4a60;
  --gray-600: var(--ivory-muted);
  --gray-700: #a39e93;
  --gray-800: #252d3a;
  --gray-900: var(--ivory);
  --green-50: rgba(34, 197, 94, 0.12);
  --green-200: rgba(34, 197, 94, 0.35);
  --green-500: #4ade80;
  --green-800: #bbf7d0;
  --yellow-400: var(--gold-light);
  /* Superficies “claras” del UI = cartas oscuras sobre fondo más oscuro */
  --white: var(--bg-card);
  --shadow: 0 10px 40px -10px rgb(0 0 0 / 0.45);
  --shadow-lg: 0 24px 50px -12px rgb(0 0 0 / 0.55);
  --radius: 1rem;
  --nav-h: 5rem;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-accent: "Cinzel", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-ui: "Raleway", "Montserrat", system-ui, sans-serif;
  --font: var(--font-body);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ivory);
  background: var(--bg-deep);
  line-height: 1.65;
}

.font-ui {
  font-family: var(--font-ui);
}

h1,
h2,
h3,
.hero-band__title,
.cta-band h2,
.fish-species-grid__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section__title {
  font-family: var(--font-display);
}

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

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

.container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--bg-card);
  color: var(--gold-light);
  border-color: var(--border-gold);
}

.btn--primary:hover:not(:disabled) {
  background: rgba(201, 162, 39, 0.12);
  border-color: var(--gold-light);
  color: var(--ivory);
}

.btn--outline-light {
  background: transparent;
  color: var(--gold);
  border-color: var(--border-gold);
}

.btn--outline-light:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--ivory);
  border-color: var(--gold-light);
}

.btn--pill {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
}

.btn--block {
  width: 100%;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgb(10 14 23 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold-soft);
  box-shadow: 0 4px 24px rgb(0 0 0 / 0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  height: 3.25rem;
  width: auto;
}

.nav__desktop {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .nav__desktop {
    display: flex;
  }
  .nav__mobile-tools {
    display: none;
  }
}

.nav__link {
  position: relative;
  padding: 0.5rem 0;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
  font-weight: 500;
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--gold-light);
}

.nav__link--active {
  color: var(--gold-light);
}

.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav__mobile-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .nav__mobile-tools {
    display: none;
  }
}

.nav__toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 0.5rem;
}

.nav__toggle:hover {
  background: rgba(201, 162, 39, 0.1);
}

.nav__toggle-bar {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--ivory);
  margin: 5px 0;
}

.nav__drawer {
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--border-gold-soft);
  background: var(--bg-deep);
}

@media (min-width: 768px) {
  .nav__drawer {
    display: none !important;
  }
}

.nav__drawer-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--ivory-muted);
}

.nav__drawer-link--active {
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
}

.nav__drawer-cta {
  margin-top: 0.5rem;
  text-align: center;
}

/* Language */
.lang-select {
  position: relative;
}

.lang-select__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-gold-soft);
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  font: inherit;
  color: var(--ivory-muted);
}

.lang-select__btn:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--ivory);
}

.lang-select__globe::before {
  content: "🌐";
  font-size: 1.1rem;
}

.lang-select__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  min-width: 12rem;
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  padding: 0.25rem 0;
}

.lang-select__menu button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  color: var(--ivory-muted);
}

.lang-select__menu button:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--ivory);
}

.lang-select__menu button.is-active {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-light);
}

.lang-select--compact .lang-select__name {
  display: none;
}

/* Page offset for fixed nav */
.page {
  padding-top: var(--nav-h);
}

/* Hero full screen */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-full__bg {
  position: absolute;
  inset: 0;
}

.hero-full__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgb(10 14 23 / 0.88) 0%,
    rgb(10 14 23 / 0.55) 45%,
    rgb(5 8 14 / 0.82) 100%
  );
}

.hero-full__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 1rem;
  max-width: 56rem;
}

.hero-full__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--ivory);
}

.hero-full__title::after {
  content: "";
  display: block;
  width: min(12rem, 50vw);
  height: 1px;
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.hero-full__subtitle {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: var(--ivory-muted);
  margin: 0 0 1.75rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.hero-keyword {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border-gold-soft);
  border-radius: 9999px;
  background: rgb(0 0 0 / 0.25);
}

.hero-full__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-full__actions {
    flex-direction: row;
  }
}

/* Section hero compact */
.hero-band {
  position: relative;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-band--gradient {
  background: linear-gradient(135deg, var(--bg-deep), #0f1728);
  color: var(--ivory);
}

.hero-band__bg-img {
  position: absolute;
  inset: 0;
}

.hero-band__bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgb(10 14 23 / 0.94) 0%,
    rgb(17 24 39 / 0.88) 50%,
    rgb(10 14 23 / 0.92) 100%
  );
}

.hero-band .container {
  position: relative;
  z-index: 2;
}

.hero-band__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  margin: 0 0 1rem;
  text-align: center;
  color: var(--ivory);
}

.hero-band__subtitle {
  font-size: 1.25rem;
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: var(--gray-50);
}

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  color: var(--ivory);
  margin: 0 0 1rem;
}

.section__lead {
  font-size: 1.15rem;
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  max-width: 42rem;
  margin: 0 auto;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__icon-wrap {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-light);
}

.stat__label {
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Grids */
.grid-3 {
  display: grid;
  gap: 2rem;
}

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

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

.grid-2-3 {
  display: grid;
  gap: 2rem;
}

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

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

/* Tour card */
.tour-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.tour-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.tour-card__media {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.tour-card:hover .tour-card__media img {
  transform: scale(1.08);
}

.tour-card__price {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgb(10 14 23 / 0.85);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  border: 1px solid var(--border-gold-soft);
}

.tour-card__body {
  padding: 1.5rem;
}

.tour-card__stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-bottom: 0.5rem;
  color: var(--yellow-400);
  font-size: 0.9rem;
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--ivory);
}

.tour-card__desc {
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--ivory-muted);
  margin-bottom: 1rem;
}

/* Service card */
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1px solid var(--border-gold-soft);
}

.service-card:hover {
  box-shadow: 0 14px 40px -18px var(--gold-glow);
  border-color: var(--border-gold);
}

.service-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
  border: 1px solid var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.service-card__icon svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--ivory);
}

.service-card__desc {
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  margin: 0 0 1.25rem;
}

.service-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.service-card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 9999px;
  background: var(--gold);
  flex-shrink: 0;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgb(10 14 23 / 0.92) 0%,
    rgb(10 14 23 / 0.75) 100%
  );
}

.cta-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--ivory);
  max-width: 48rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.cta-band p {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  color: var(--ivory-muted);
  margin: 0 0 2rem;
}

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

.mt-8 {
  margin-top: 2rem;
}

/* Tours page toolbar */
.tours-toolbar {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-gold-soft);
  box-shadow: 0 8px 32px rgb(0 0 0 / 0.35);
  padding: 1.5rem 0;
}

.tours-toolbar__row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tours-toolbar__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.search-field {
  position: relative;
  flex: 1;
  max-width: 28rem;
}

.search-field input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.5rem;
  font: inherit;
  background: var(--bg-card);
  color: var(--ivory);
}

.search-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.search-field__icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.chip {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.5rem;
  font: inherit;
  font-family: var(--font-ui);
  cursor: pointer;
  background: var(--bg-card);
  color: var(--ivory-muted);
  white-space: nowrap;
}

.chip:hover {
  background: rgba(201, 162, 39, 0.1);
  color: var(--ivory);
}

.chip.is-active {
  background: rgba(201, 162, 39, 0.18);
  color: var(--gold-light);
  border-color: var(--border-gold);
}

/* Feature box (fishing) */
.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.feature-box__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Species grid */
.species-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.species-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid var(--border-gold-soft);
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-weight: 500;
  color: var(--ivory-muted);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--ivory-muted);
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

/* Process steps */
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  padding-top: 2.5rem;
}

.step-card__num {
  position: absolute;
  top: -1rem;
  left: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--bg-deep);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  font-weight: 700;
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Why list */
.why-list__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.why-list__num {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold-soft);
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 500px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-ui);
  color: var(--ivory-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.5rem;
  font: inherit;
  background: var(--bg-deep);
  color: var(--ivory);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.alert-success {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 0.5rem;
  color: var(--green-800);
  margin-bottom: 1rem;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--border-gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-placeholder {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1), var(--bg-card));
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.75rem;
  height: 16rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
  color: var(--ivory-muted);
}

/* Footer */
.footer {
  background: #05070c;
  color: var(--ivory-muted);
  padding: 3rem 0 0;
  border-top: 1px solid var(--border-gold-soft);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__logo {
  height: 5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer__text {
  margin: 0 0 1rem;
  max-width: 28rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  color: var(--gray-300);
  font-weight: 700;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.footer__social-link:hover {
  color: var(--gold-light);
}

.footer__social-svg {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
}

.footer__title {
  font-family: var(--font-accent);
  color: var(--ivory);
  margin: 0 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

/* Listas de contenido (p. ej. políticas) */
.section ol.footer__list {
  list-style: decimal;
  padding-left: 1.5rem;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
  line-height: 1.65;
}

.section ul.footer__list {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
  line-height: 1.65;
}

.section ol.footer__list a,
.section ul.footer__list a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__list a:hover {
  color: var(--gold-light);
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer__bottom {
  border-top: 1px solid var(--border-gold-soft);
  margin-top: 2rem;
  padding: 1.5rem;
  text-align: center;
  color: var(--ivory-muted);
  font-size: 0.85rem;
  font-family: var(--font-ui);
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hidden {
  display: none !important;
}

.fish-hero-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.section-head-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
}

.fish-species-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .fish-species-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fish-species-grid__title {
  text-align: left;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fish-species-grid__lead {
  text-align: left;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--ivory-muted);
}

.services-why {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .services-why {
    grid-template-columns: 1fr 1fr;
  }
}

/* About page */
.about-intro {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .about-intro {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

.about-text p {
  margin: 0 0 1rem;
  color: var(--ivory-muted);
  font-size: 1.05rem;
  font-family: var(--font-ui);
}

.about-facts {
  display: grid;
  gap: 1rem;
}

.about-fact {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
}

.about-fact__title {
  margin: 0 0 0.35rem;
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-display);
}

.about-fact__text {
  margin: 0;
  color: var(--ivory-muted);
}

.mission-vision-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .mission-vision-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-soft);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.mv-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  color: var(--ivory);
  font-family: var(--font-display);
}

.mv-card p {
  margin: 0 0 0.75rem;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
}

/* Tour detail dialog + carousel (datos desde MySQL) */
.tour-detail-dialog {
  max-width: min(42rem, 100vw - 2rem);
  width: 100%;
  border: 1px solid var(--border-gold-soft);
  border-radius: 1rem;
  padding: 0;
  background: var(--bg-card);
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.tour-detail-dialog::backdrop {
  background: rgb(0 0 0 / 0.55);
}

.tour-detail-dialog__inner {
  position: relative;
  padding: 0 0 1.5rem;
}

.tour-detail-dialog__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.35);
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.tour-detail-dialog__close:hover {
  background: rgb(0 0 0 / 0.5);
}

.tour-detail-carousel {
  position: relative;
  border-radius: 1rem 1rem 0 0;
  overflow: hidden;
  background: #0f1419;
}

.tour-detail-carousel__viewport {
  overflow: hidden;
}

.tour-detail-carousel__track {
  display: flex;
  transition: transform 0.35s ease;
}

.tour-detail-carousel__slide {
  flex: 0 0 100%;
  aspect-ratio: 16 / 10;
}

.tour-detail-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tour-detail-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgb(0 0 0 / 0.45);
  color: var(--ivory);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.tour-detail-carousel__btn:hover {
  background: rgb(0 0 0 / 0.65);
}

.tour-detail-carousel__btn--prev {
  left: 0.5rem;
}

.tour-detail-carousel__btn--next {
  right: 0.5rem;
}

.tour-detail-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem;
  background: linear-gradient(180deg, transparent, rgb(0 0 0 / 0.25));
}

.tour-detail-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.35);
  cursor: pointer;
}

.tour-detail-carousel__dot.is-active {
  background: var(--gold);
}

.tour-detail-dialog__body {
  padding: 1.25rem 1.35rem 0;
}

.tour-detail-dialog__price {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.tour-detail-dialog__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--ivory);
}

.tour-detail-dialog__meta {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ivory-muted);
}

.tour-detail-dialog__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ivory-muted);
  font-family: var(--font-ui);
  white-space: pre-wrap;
}

.tour-detail-dialog__booking {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.tour-detail-dialog__booking-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  color: var(--ivory);
}

.tour-detail-dialog__booking-hint {
  margin: 0 0 1rem;
  color: var(--ivory-muted);
  line-height: 1.45;
}

.tour-detail-dialog__booking-form .form-group textarea {
  min-height: 5rem;
}

.tour-detail-dialog__booking-feedback {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.tour-detail-dialog__booking-feedback--ok {
  background: rgb(34 197 94 / 0.15);
  border: 1px solid rgb(34 197 94 / 0.4);
  color: #bbf7d0;
}

.tour-detail-dialog__booking-feedback--err {
  background: rgb(239 68 68 / 0.12);
  border: 1px solid rgb(239 68 68 / 0.35);
  color: #fecaca;
}

/* Botón flotante WhatsApp (negro + dorado, identidad del sitio) */
.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #151c28 0%, #0a0e17 100%);
  color: var(--gold-light);
  border: 2px solid var(--gold);
  box-shadow:
    0 4px 20px rgb(0 0 0 / 0.45),
    0 0 24px var(--gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  color: var(--gold);
  border-color: var(--gold-light);
  box-shadow:
    0 6px 28px rgb(0 0 0 / 0.5),
    0 0 32px var(--gold-glow);
}

.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  width: 1.85rem;
  height: 1.85rem;
}

@media (min-width: 640px) {
  .whatsapp-float {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 3.75rem;
    height: 3.75rem;
  }

  .whatsapp-float__icon {
    width: 2rem;
    height: 2rem;
  }
}
