
:root {
  --sand: #f7f2ea;
  --sand-dark: #e4dccd;
  --teal: #1b6b70;
  --teal-dark: #0f4e52;
  --sun: #f9a826;
  --sun-dark: #d48516;
  --ink: #102326;
  --slate: #2d3f40;
  --muted: #5b7071;
  --white: #ffffff;
  --card-shadow: 0 18px 40px rgba(16, 35, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: rgba(245, 247, 248, 0.92);
  background: #050505;
}

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

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

.page-wrapper {
  overflow-x: hidden;
  background: #050505;
}

section {
  color: inherit;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 0.5rem;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--slate);
}

nav.primary-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  align-items: center;
}

nav.primary-nav a {
  position: relative;
  padding-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.8);
}

nav.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease-in-out;
}

nav.primary-nav a:hover::after,
nav.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

nav.primary-nav a.is-active {
  color: #ffffff;
}

nav.primary-nav a.is-active::after {
  transform: scaleX(1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sun), var(--sun-dark));
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(249, 168, 38, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(249, 168, 38, 0.28);
}

.hero {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  background: linear-gradient(rgba(16, 35, 38, 0.63), rgba(16, 35, 38, 0.55)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: var(--white);
}

.hero-content {
  display: grid;
  gap: 2rem;
  max-width: 640px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin: 0;
}

.hero p.lead {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.hero-highlight {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.hero-highlight span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 10px 25px rgba(16, 35, 38, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

section {
  padding: 4.5rem 0;
}

section.section-alt {
  background: #0f1114;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2.8rem;
}

.section-heading span.label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: rgba(245, 247, 248, 0.65);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-family: 'Playfair Display', serif;
  color: #ffffff;
}

.section-heading p {
  margin: 0;
  max-width: 620px;
  color: rgba(245, 247, 248, 0.78);
  line-height: 1.7;
}

.tour-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tour-card {
  position: relative;
  border-radius: 32px;
  padding: 2rem;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.tour-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 15%, rgba(0, 0, 0, 0.65) 100%);
}

.tour-card > * {
  position: relative;
  z-index: 1;
}

.tour-card.front-wb45 { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80'); }
.tour-card.front-wb60 { background-image: url('https://images.unsplash.com/photo-1470246973918-29a93221c455?auto=format&fit=crop&w=1200&q=80'); }
.tour-card.front-tube { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80'); }
.tour-card.front-charter { background-image: url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1200&q=80'); }

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}

.tour-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(125, 213, 217, 0.22);
  color: #e6fdff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tour-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #fff;
}

.tour-card p {
  margin: 0;
  color: rgba(245, 247, 248, 0.9);
  line-height: 1.65;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(245, 247, 248, 0.75);
}

.tour-card .cta-button {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.tour-card .tour-price a,
.tour-card .rating {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.tour-card .text-link {
  color: #e6fdff !important;
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-card {
  background: rgba(27, 107, 112, 0.1);
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid rgba(27, 107, 112, 0.1);
  display: grid;
  gap: 0.7rem;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--teal-dark);
}

.feature-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.booking-panel {
  background: linear-gradient(135deg, rgba(27, 107, 112, 0.92), rgba(15, 78, 82, 0.96));
  color: var(--white);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 1.8rem;
  box-shadow: 0 28px 60px rgba(15, 78, 82, 0.25);
}

.booking-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 2.4rem);
  font-family: 'Playfair Display', serif;
}

.booking-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.booking-options a,
.booking-options button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.booking-options a.primary {
  background: linear-gradient(135deg, var(--sun), var(--sun-dark));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(249, 168, 38, 0.28);
}

.booking-options a.outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(4px);
}

.booking-options a:hover,
.booking-options a:focus-visible {
  transform: translateY(-2px);
}

.booking-options a.stack {
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 72px;
}

.booking-options a.stack span:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.booking-options a.stack span:last-child {
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-word;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.7rem;
  box-shadow: var(--card-shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  font-size: 3rem;
  color: rgba(27, 107, 112, 0.12);
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.testimonial-card .name {
  margin-top: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 12px 26px rgba(16, 35, 38, 0.08);
  display: grid;
  gap: 0.6rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--teal-dark);
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: var(--card-shadow);
  display: grid;
  gap: 1rem;
}

.contact-card h3 {
  margin: 0;
  color: var(--teal-dark);
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.contact-card li {
  display: grid;
  grid-template-columns: 130px 1fr;
  column-gap: 1.2rem;
  color: var(--slate);
  line-height: 1.6;
  align-items: flex-start;
}

.contact-card li span.label {
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-right: 0.5rem;
}

.contact-card li span.label + * {
  margin-left: 0;
}

.weather-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  overflow: visible;
  background: var(--sand);
  --weather-section-photo: url("/wp-content/themes/joyride/static/assets/images/insta-wave.webp");
  --weather-section-overlay: linear-gradient(135deg, rgba(16, 35, 38, 0.65), rgba(16, 35, 38, 0.2));
}

.weather-shell {
  border-radius: 64px;
  overflow: hidden;
  box-shadow: 0 45px 90px rgba(16, 35, 38, 0.22);
}

.weather-section::before,
.weather-section::after {
  content: none;
}

.weather-section > * {
  position: relative;
  z-index: 1;
}

.weather-panel {
  position: relative;
  border-radius: 48px;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  overflow: visible;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.weather-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--weather-panel-overlay, linear-gradient(135deg, rgba(16, 35, 38, 0.65), rgba(16, 35, 38, 0.25))), var(--weather-panel-photo, url("/wp-content/themes/joyride/static/assets/images/insta-wave.webp"));
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
  transition: opacity 260ms ease, transform 260ms ease;
  border-radius: inherit;
}

.weather-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 38, 0.3) 0%, rgba(16, 35, 38, 0.65) 100%);
  z-index: 1;
  border-radius: inherit;
}

.weather-panel > * {
  position: relative;
  z-index: 2;
}

.weather-date-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: clamp(2rem, 4.6vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.65);
}

.weather-date-word {
  display: block;
  font-size: clamp(2.4rem, 5.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.weather-date-date {
  display: block;
  font-size: clamp(1.25rem, 3.1vw, 1.65rem);
  font-weight: 500;
  opacity: 0.85;
}

.weather-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .weather-hero {
    grid-template-columns: minmax(0, 1fr) 320px;
  }
}

.weather-panel h2 {
  margin-bottom: -0.2rem;
  color: var(--white);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.weather-panel .label {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.weather-hero-copy h2 {
  margin-top: 0.4rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.weather-hero-copy p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.weather-live {
  margin-top: 1.2rem;
}

.weather-live-now {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.weather-temp-stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.weather-hero-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.weather-hero-temp {
  font-size: clamp(3rem, 6vw, 4.2rem);
  font-weight: 700;
  margin: 0;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.weather-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.weather-hero-tags span {
  background: rgba(0, 0, 0, 0.25);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.weather-hero-summary,
.weather-hero-day {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.weather-hero-day {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.weather-hero-scene {
  display: none;
}

.weather-scroll {
  margin-top: 2.5rem;
  overflow: visible;
  position: relative;
  padding: 0 0 0.5rem;
}

.weather-cards {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
}

.weather-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(16, 35, 38, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 5;
}

.weather-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.weather-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.weather-nav[disabled] {
  opacity: 0.25;
  pointer-events: none;
}

.weather-nav--prev {
  left: 0.75rem;
}

.weather-nav--next {
  right: 0.75rem;
}

.weather-card {
  border-radius: 28px;
  position: relative;
  border: none;
  border-radius: 28px;
  min-width: 220px;
  flex: 0 0 220px;
  padding: 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  overflow: visible;
  scroll-snap-align: start;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.weather-card-photo {
  border-radius: 28px;
  position: absolute;
  inset: 0;
  background-image: var(--weather-overlay, linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2))), var(--weather-photo, linear-gradient(135deg, #1b6b70, #0f4e52));
  background-size: cover;
  background-position: center;
  filter: saturate(1.15);
  z-index: -1;
  transition: transform 220ms ease;
}

.weather-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.55));
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: transform 240ms ease;
  clip-path: inset(0 round 28px);
}

.weather-card-content {
  display: grid;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.weather-card .day {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  text-shadow: 0 6px 15px rgba(0, 0, 0, 0.65);
}

.weather-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0.2rem 0;
}

.weather-card .icon svg {
  width: 42px;
  height: 42px;
}

.weather-card .temp {
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 6px 15px rgba(0, 0, 0, 0.65);
}

.weather-card .temp-low {
  opacity: 0.8;
}

.weather-card .rain {
  font-size: 0.9rem;
  opacity: 0.85;
  text-shadow: 0 5px 12px rgba(0, 0, 0, 0.6);
}

.weather-card-details {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.65);
}

.weather-card:hover,
.weather-card.is-active {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 20px 45px rgba(16, 35, 38, 0.25);
}

.weather-card:hover .weather-card-photo,
.weather-card.is-active .weather-card-photo {
  border-radius: 28px;
  transform: scale(1.08);
}

.weather-card:hover::after,
.weather-card.is-active::after {
  transform: scale(1.08);
}

.weather-card-star {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fde68a 55%, rgba(253, 230, 138, 0.12));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b45309;
  font-size: 1.3rem;
  box-shadow: 0 18px 34px rgba(253, 230, 138, 0.55);
  animation: sparkle 1.8s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
  transition: transform 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}

.weather-card-star::before {
  content: '★';
  color: #facc15;
  text-shadow: 0 0 12px rgba(252, 211, 77, 0.85);
}

.weather-card:hover .weather-card-star,
.weather-card.is-active .weather-card-star {
  animation: sparkle 1.8s ease-in-out infinite, starBounce 1.2s ease-in-out infinite;
}

.weather-card.is-best {
  border: 1px solid rgba(252, 211, 77, 0.6);
}

.weather-card.is-skeleton {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 28px;
}

.weather-card.is-skeleton .weather-card-photo {
  border-radius: 28px;
  animation: shimmer 1.4s linear infinite;
  background-image: linear-gradient(110deg, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0.65) 37%, rgba(255, 255, 255, 0.4) 63%), linear-gradient(135deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.2));
}

.weather-card.is-skeleton .day,
.weather-card.is-skeleton .temp,
.weather-card.is-skeleton .icon,
.weather-card.is-skeleton .rain {
  opacity: 0;
}

.weather-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.weather-error {
  margin: 0;
  font-weight: 600;
  color: var(--teal-dark);
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes starBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.15); }
}

footer.site-footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
}

footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

footer .footer-inner span {
  font-size: 0.9rem;
}

.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.6rem;
  background: rgba(16, 35, 38, 0.88);
  color: var(--white);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(16, 35, 38, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 30;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 3px;
}

.floating-whatsapp {
  position: fixed;
  bottom: var(--floating-whatsapp-bottom, 1.6rem);
  right: 1.6rem;
  background: linear-gradient(135deg, #30c76f, #18a957);
  color: var(--white);
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  box-shadow: 0 18px 40px rgba(24, 169, 87, 0.32);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  transition: transform 160ms ease, bottom 200ms ease;
  z-index: 120;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  nav.primary-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: rgba(247, 242, 234, 0.98);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.3rem 1.5rem 2rem;
    border-bottom: 1px solid rgba(16, 35, 38, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
  }

  nav.primary-nav.is-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .hero {
    padding: 5.5rem 0 4rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .booking-panel {
    border-radius: 22px;
  }

  .weather-panel {
    border-radius: 28px;
    padding: 1.5rem;
  }

  .weather-hero {
    grid-template-columns: 1fr;
  }

  .weather-live {
    flex-direction: column;
    align-items: flex-start;
  }

  .weather-hero-tags {
    width: 100%;
  }

  .weather-hero-scene {
    display: block;
    min-height: 200px;
  }

  .weather-cards {
    gap: 0.75rem;
  }

  .weather-scroll {
    padding: 0 1.5rem 0.5rem;
  }

  .weather-card {
    border-radius: 28px;
    min-width: 180px;
  }

  .booking-bar {
    flex-direction: column;
  }

  .back-to-top {
    right: 1rem;
    bottom: 8.5rem;
  }

  .floating-whatsapp {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: var(--floating-whatsapp-bottom, 1.1rem);
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    transform: translate(-50%, -3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:target{scroll-margin-top:96px;}
nav.primary-nav a{padding:.35rem 0;min-height:44px;display:flex;align-items:center;}
nav.primary-nav .nav-book{display:inline-flex;align-items:center;padding:.55rem 1.25rem;border-radius:999px;background:linear-gradient(135deg,var(--sun),var(--sun-dark));color:#fff;}
nav.primary-nav .nav-book::after{display:none;}
.tour-card:focus-within{outline:2px solid rgba(27,107,112,.35);outline-offset:3px;}
.tour-meta .tour-price{font-weight:600;color:#fff;}
.tour-meta .rating{margin-left:.35rem;font-weight:600;color:#fff;}
.tour-actions .cta-button:hover,.tour-actions .cta-button:focus-visible{transform:translateY(-2px) scale(1.02);}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;}


.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.review-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--card-shadow);
  min-height: 160px;
}

.review-card h3 {
  margin-top: 0;
}

.review-card .pending-copy {
  color: var(--muted);
}

.weather-hourly-panel {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: 0 20px 50px rgba(16,35,38,0.2);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  justify-self: end;
}
.weather-radar-tag {
  display: block;
  text-align: right;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.weather-hourly-panel[hidden] { display: none; }
.weather-hourly-header {
  display:flex;
  flex-direction:column;
  gap:0.15rem;
  margin-bottom:0.8rem;
}
.weather-hourly-header span.label { letter-spacing:0.2em; font-size:0.75rem; color:rgba(255,255,255,0.7); }
.weather-hourly-header span[data-hourly-title] { font-weight:600; color:var(--white); }
.weather-hourly-list { display:grid; gap:0.4rem; max-height:420px; overflow:auto; padding-right:0.2rem; }
.weather-hour-row { display:flex; align-items:center; justify-content:space-between; gap:0.6rem; padding:0.45rem 0.35rem; border-radius:14px; background:rgba(0,0,0,0.25); color:var(--white); font-size:0.9rem; }
.weather-hour-row span { display:flex; align-items:center; gap:0.25rem; }
.weather-hour-row .hour { font-weight:600; min-width:3.5rem; }
.weather-hour-row .hour-icon { font-size:1.1rem; }
.weather-hour-row .hour-temp { font-weight:600; }
.weather-hour-row .hour-wind { font-size:0.85rem; opacity:0.85; }

.weather-card.is-hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
