/* =============================================
   BAJOKAJAKI — 1:1 odwzorowanie z Lovable
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

/* =============================================
   TOKENS
   ============================================= */
:root {
  --background: hsl(195, 30%, 97%);
  --foreground: hsl(205, 50%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(205, 50%, 10%);
  --muted: hsl(195, 15%, 94%);
  --muted-foreground: hsl(205, 15%, 45%);
  --border: hsl(195, 20%, 88%);

  --teal-deep: 195 80% 22%;
  --teal-mid:  195 60% 35%;
  --teal-light: 195 40% 55%;
  --navy:      210 55% 12%;
  --navy-dark: 210 55% 8%;
  --sunset:        28 92% 55%;
  --sunset-light:  35 95% 62%;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Plus Jakarta Sans', sans-serif;
  --radius: 0.75rem;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

/* =============================================
   ANIMATIONS (fade-up on scroll)
   ============================================= */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.45s; }
.fade-up[data-delay="5"] { transition-delay: 0.6s; }
.fade-up[data-delay="6"] { transition-delay: 0.75s; }
.fade-up[data-delay="7"] { transition-delay: 1.1s; }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: transparent;
  transition: background-color 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;
  transform: translateY(-100px);
  animation: nav-in 0.5s ease forwards;
}
@keyframes nav-in { to { transform: translateY(0); } }

.nav.scrolled {
  background: hsl(var(--navy-dark) / 0.8);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-inner {
  position: relative;
  z-index: 52;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-links {
  display: none;
  flex: 1;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
}
.nav-links.left { justify-content: flex-end; }
.nav-links.right { justify-content: flex-start; }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: #fff; }

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-dropdown-toggle svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle {
  color: #fff;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  min-width: 15rem;
  padding: 0.55rem;
  background: hsl(var(--navy-dark) / 0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  box-shadow: 0 24px 60px -26px rgba(0, 0, 0, 0.55);
  transform: translate(-50%, 0.5rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(18px);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -1rem;
  height: 1rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 0.75rem;
  color: rgba(255,255,255,0.74);
  font-size: 0.875rem;
  font-weight: 650;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateX(2px);
}
.nav-dropdown-heading {
  display: block;
  padding: 0.35rem 0.85rem 0.25rem;
  color: hsl(var(--sunset-light));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-dropdown-bajo .nav-bajo-menu {
  left: 50%;
  min-width: min(42rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(11rem, 0.85fr) minmax(18rem, 1.45fr);
  gap: 0.65rem;
  padding: 0.8rem;
}
.nav-bajo-column {
  min-width: 0;
}
.nav-bajo-column + .nav-bajo-column {
  border-left: 1px solid rgba(255,255,255,0.09);
  padding-left: 0.65rem;
}
.nav-bajo-column a {
  white-space: normal;
  line-height: 1.32;
}
.nav-dropdown-rivers .nav-rivers-menu {
  left: auto;
  right: 0;
  min-width: min(42rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.8rem;
  transform: translateY(0.5rem);
}
.nav-dropdown-rivers:hover .nav-rivers-menu,
.nav-dropdown-rivers:focus-within .nav-rivers-menu {
  transform: translateY(0);
}
.nav-rivers-heading {
  display: block;
  padding: 0.35rem 0.85rem 0.25rem;
  color: hsl(var(--sunset-light));
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-rivers-group a {
  padding-top: 0.58rem;
  padding-bottom: 0.58rem;
}
@media (max-width: 980px) {
  .nav-dropdown-bajo .nav-bajo-menu {
    min-width: min(30rem, calc(100vw - 2rem));
    grid-template-columns: 1fr;
  }
  .nav-bajo-column + .nav-bajo-column {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.09);
    padding-left: 0;
    padding-top: 0.55rem;
  }
  .nav-dropdown-rivers .nav-rivers-menu {
    min-width: min(28rem, calc(100vw - 2rem));
    grid-template-columns: 1fr;
  }
}

.nav-logo {
  flex-shrink: 0;
  margin: 0 clamp(1.5rem, 3vw, 3rem);
}
.nav-logo img { height: 64px; width: auto; }
@media (min-width: 640px) { .nav-logo img { height: 80px; } }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  background: hsl(var(--sunset));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta svg { width: 15px; height: 15px; }

.nav-mobile-toggle {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: none;
  padding: 0.5rem;
}
.nav-mobile-toggle svg { width: 24px; height: 24px; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-mobile-toggle { display: none; }
}

/* Mobile menu */
.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: hsl(var(--navy-dark) / 0.98);
  backdrop-filter: blur(20px);
  padding: 5rem 1.5rem 2rem;
  z-index: 49;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile-panel.open { display: block; }
.nav-mobile-panel .nav-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile-group-title {
  margin-top: 0.9rem;
  padding: 0.35rem 0 0.15rem;
  color: hsl(var(--sunset-light));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-mobile-subgroup-title {
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.7rem;
}
.nav-mobile-panel .nav-cta {
  display: inline-flex;
  margin-top: 1.25rem;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay-l, .hero-overlay-v {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-overlay-l {
  background: linear-gradient(to right, hsl(var(--navy-dark) / 0.9) 0%, hsl(var(--navy-dark) / 0.5) 50%, transparent 100%);
}
.hero-overlay-v {
  background: linear-gradient(to top, hsl(var(--navy-dark) / 0.8), transparent, hsl(var(--navy-dark) / 0.3));
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10rem 1.5rem 8rem;
}
@media (min-width: 1024px) { .hero-inner { padding: 10rem 3rem 8rem; } }

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4rem; } }
.hero-title .dot { color: hsl(var(--sunset)); }

.hero-sub {
  max-width: 36rem;
  margin: 1.5rem auto 0;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.625;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

.hero-ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.btn-sunset {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: hsl(var(--sunset));
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 30px -8px hsl(var(--sunset) / 0.4);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.btn-sunset::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, hsl(var(--sunset-light)), hsl(var(--sunset)));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-sunset:hover::before { opacity: 1; }
.btn-sunset:hover { box-shadow: 0 14px 35px -5px hsl(var(--sunset) / 0.45); }
.btn-sunset > * { position: relative; z-index: 1; }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  transition: background-color 0.3s, border-color 0.3s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
}
.hero-ctas .btn-hero-more {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.62);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}
.hero-ctas .btn-hero-more:hover {
  background: rgba(255,255,255,0.24);
  border-color: #fff;
  transform: translateY(-1px);
}
.hero-ctas .btn-hero-more svg {
  width: 16px;
  height: 16px;
}

.hero-stats {
  margin: 4rem auto 0;
  max-width: 36rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.hero-stats > div:not(.divider) { min-width: 6.5rem; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.72); line-height: 1.25; margin-top: 0.25rem; }
.hero-stats .divider { width: 1px; height: 2rem; background: rgba(255,255,255,0.1); }
@media (max-width: 420px) {
  .hero-stats { gap: 0.75rem; }
  .hero-stats > div:not(.divider) { min-width: 4.75rem; }
  .hero-stat-num { font-size: 1.25rem; }
  .hero-stat-lbl { font-size: 0.68rem; }
}

/* Scroll-down chevron inside hero */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  animation: hero-bounce 2.2s ease-in-out infinite;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.6); }
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

.hero-bottom-wave {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-bottom-wave svg { width: 100%; height: 80px; display: block; }

/* Diagonal separator down the middle of contact-inner (stops at footer-bottom) */
.contact-separator {
  display: none;
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: var(--background);
  transform: translateX(-50%) skewX(-4deg);
  z-index: 20;
  pointer-events: none;
}
@media (min-width: 1024px) { .contact-separator { display: block; } }

/* =============================================
   WHY US SECTION
   ============================================= */
.whyus { padding: 5rem 0; }
@media (min-width: 1024px) { .whyus { padding: 7rem 0; } }

.section-head { text-align: center; margin-bottom: 1.5rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--foreground);
  font-size: 1.875rem;
}
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } }
.section-head p {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--muted-foreground);
}

.whyus-perks {
  margin: 0 auto 4rem;
  max-width: 32rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.whyus-perk {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.whyus-perk svg { width: 16px; height: 16px; color: hsl(var(--sunset)); flex-shrink: 0; }

.whyus-features {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .whyus-features { grid-template-columns: repeat(3, 1fr); } }

.whyus-feature { text-align: center; }
.whyus-feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--teal-deep) / 0.1);
}
.whyus-feature-icon svg { width: 28px; height: 28px; color: hsl(var(--teal-mid)); }
.whyus-feature h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
}
.whyus-feature .label {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--teal-mid));
}
.whyus-feature p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

.whyus-images {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .whyus-images { grid-template-columns: repeat(3, 1fr); } }
.whyus-image-card {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: 1rem;
}
.whyus-image-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.whyus-image-card:hover img { transform: scale(1.05); }
.whyus-image-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(210, 55%, 8%, 0.7), transparent);
}
.whyus-image-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
}
.whyus-image-label h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.whyus-image-label .bar {
  margin-top: 0.25rem;
  width: 2rem;
  height: 2px;
  background: hsl(var(--sunset));
  border-radius: 2px;
}

/* =============================================
   HELP SECTION
   ============================================= */
.help {
  position: relative;
  overflow: hidden;
}
.help-wrap {
  position: relative;
  min-height: 500px;
}
@media (min-width: 1024px) { .help-wrap { min-height: 600px; } }
.help-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.help-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--navy-dark) / 0.7);
}
.help-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 5rem 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .help-content { min-height: 600px; } }

.help-inner { max-width: 48rem; }
.help-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .help-inner h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .help-inner h2 { font-size: 3rem; } }

.help-bar {
  width: 80px; height: 4px; margin: 0.75rem auto 0;
  background: hsl(var(--sunset));
  border-radius: 4px;
}

.help-inner h3 {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  font-size: 1.5rem;
}
@media (min-width: 640px) { .help-inner h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .help-inner h3 { font-size: 2.25rem; } }
.help-inner h3 .accent { color: hsl(var(--sunset)); }

.help-inner p {
  max-width: 36rem;
  margin: 2rem auto 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.625;
}
.help-inner p + p {
  margin-top: 1rem;
  color: rgba(255,255,255,0.6);
}

.help-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.help-ctas .btn-sunset-small,
.help-ctas .btn-outline-white {
  line-height: 1;
  white-space: nowrap;
  padding: 1rem 2rem;
  font-size: 0.875rem;
}
.btn-sunset-small {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  transition: opacity 0.2s;
}
.btn-sunset-small:hover { opacity: 0.9; }
.btn-sunset-small svg { width: 15px; height: 15px; }

/* =============================================
   KAYAK PICKER
   ============================================= */
.kayaks {
  padding-top: 5rem;
  padding-bottom: 0;
}
@media (min-width: 1024px) { .kayaks { padding-top: 7rem; } }

.kayaks-header { margin-bottom: 3.5rem; text-align: center; }
.kayaks-head-tag {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--sunset));
}
.kayaks-header h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 640px) { .kayaks-header h2 { font-size: 2.25rem; } }
.kayaks-header p {
  margin: 0.75rem auto 0;
  max-width: 32rem;
  color: var(--muted-foreground);
}

.kayak-wave {
  position: relative;
  z-index: 10;
  margin-bottom: -1px;
  line-height: 0;
}
.kayak-wave svg { width: 100%; height: 60px; display: block; }

.kayak-categories {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 420px;
  background: var(--background);
}

.kayak-cat {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.kayak-cat:nth-child(1) { clip-path: polygon(0 0, 100% 0, 93% 100%, 0 100%); }
.kayak-cat:nth-child(2) { clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%); margin-left: -2%; }
.kayak-cat:nth-child(3) { clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%); margin-left: -2%; }

.kayak-cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.kayak-cat:hover img { transform: scale(1.06); }

.kayak-cat-overlay {
  position: absolute; inset: 0;
  background: hsl(210, 55%, 8%, 0.4);
  transition: background-color 0.3s;
}
.kayak-cat:hover .kayak-cat-overlay {
  background: hsl(210, 55%, 8%, 0.55);
}

.kayak-cat-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 1.5rem 3.5rem;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.kayak-cat-label h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
@media (min-width: 1024px) { .kayak-cat-label h3 { font-size: 3rem; } }
.kayak-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 0.125rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color 0.2s, background-color 0.2s;
}
.kayak-cat:hover .kayak-cat-btn { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.kayak-cat-btn svg { width: 15px; height: 15px; }

@media (max-width: 767px) {
  .kayak-categories { flex-direction: column; height: auto; }
  .kayak-cat { height: 220px; clip-path: none !important; margin: 0 !important; }
  .kayak-cat:not(:first-child) { margin-top: -1px !important; }
}

/* =============================================
   PRICING SECTION (dark bg image)
   ============================================= */
.pricing {
  position: relative;
  overflow: visible;
  margin-top: 4px;
  background: var(--background);
}
.pricing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pricing-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--navy-dark) / 0.9);
  z-index: 1;
}
.pricing-inner {
  position: relative;
  z-index: 2;
  padding: 2.5rem 1.5rem 5rem;
}
@media (min-width: 1024px) { .pricing-inner { padding: 3.5rem 3rem 7rem; } }

.pricing-head { text-align: center; margin-bottom: 3.5rem; }
.pricing-waves {
  width: 48px; height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: hsl(var(--sunset) / 0.2);
  color: hsl(var(--sunset));
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-waves svg { width: 22px; height: 22px; }
.pricing-head .tag {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--sunset));
}
.pricing-head h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 1.875rem;
}
@media (min-width: 640px) { .pricing-head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .pricing-head h2 { font-size: 3rem; } }
.pricing-head p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255,255,255,0.5);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }

.price-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.price-card.popular {
  box-shadow: 0 0 0 2px hsl(var(--sunset) / 0.5);
}

.price-popular-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  z-index: 3;
}

.price-card-head {
  position: relative;
  height: 144px;
  overflow: hidden;
}
.price-card-head img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.price-card:hover .price-card-head img { transform: scale(1.05); }
.price-card-head::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(210,55%,10%), hsl(210,55%,10%,0.6) 45%, transparent);
}
.price-card-title {
  position: absolute;
  left: 1.25rem;
  bottom: 0.75rem;
  z-index: 2;
}
.price-card-title h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.price-card-title p {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.price-card-body {
  background: hsl(210, 50%, 12%);
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-amount { display: flex; align-items: baseline; gap: 0.25rem; }
.price-amount .pre {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.price-amount .value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.price-amount .unit { color: rgba(255,255,255,0.4); font-size: 0.875rem; }

.price-features {
  margin-top: 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.45;
}
.price-features li svg { width: 16px; height: 16px; color: hsl(var(--sunset)); flex-shrink: 0; margin-top: 2px; }

.price-cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s, opacity 0.2s;
  width: 100%;
}
.price-cta:hover {
  border-color: hsl(var(--sunset) / 0.5);
  color: hsl(var(--sunset));
}
.price-cta.primary,
.price-card.popular .price-cta {
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  color: #fff;
}
.price-cta.primary:hover,
.price-card.popular .price-cta:hover { opacity: 0.9; color: #fff; }
.price-cta svg { width: 14px; height: 14px; }

/* =============================================
   FOOTER / CONTACT SECTION
   ============================================= */
.contact {
  position: relative;
  overflow: hidden;
  margin-top: 4px;
  background: var(--background);
}
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--navy-dark) / 0.9);
  z-index: 1;
}
.contact-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 1.5rem;
}
@media (min-width: 1024px) { .contact-inner { padding: 7rem 3rem; } }

.contact-grid {
  max-width: 64rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background-color 0.2s;
}
.contact-card:hover {
  border-color: hsl(var(--sunset) / 0.4);
  background: rgba(255,255,255,0.1);
}
.contact-address-card {
  border-color: hsl(var(--sunset) / 0.65);
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.07));
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.contact-card-icon {
  width: 48px; height: 48px;
  border-radius: 0.75rem;
  background: hsl(var(--sunset) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 22px; height: 22px; color: hsl(var(--sunset)); }

.contact-card-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.contact-card-value {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}
.contact-card-big { font-size: 1.25rem; }
.contact-card-sub {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.contact-address-card .contact-card-label {
  color: rgba(255,255,255,0.72);
}
.contact-address-card .contact-card-sub {
  color: rgba(255,255,255,0.78);
}
.contact-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  min-height: 38px;
  padding: 0.68rem 1rem;
  border: 1px solid hsl(var(--sunset));
  border-radius: 999px;
  background: hsl(var(--sunset));
  box-shadow: 0 12px 25px hsl(var(--sunset) / 0.28);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  width: fit-content;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.contact-map-btn:hover,
.contact-map-btn:focus-visible {
  color: #fff !important;
  filter: brightness(1.05);
  box-shadow: 0 16px 30px hsl(var(--sunset) / 0.34);
  transform: translateY(-1px);
}

.contact-info-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.5);
}

/* Form */
.contact-form-wrap {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.contact-form-wrap .sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control:focus {
  border-color: hsl(var(--sunset));
  background: rgba(255,255,255,0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-submit svg { width: 16px; height: 16px; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: hsla(150, 70%, 40%, 0.15);
  border: 1px solid hsla(150, 70%, 40%, 0.3);
  border-radius: 0.75rem;
  color: hsl(150, 70%, 75%);
  font-size: 0.875rem;
}
.form-success.show { display: block; }

/* Socials row */
.contact-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-btn:hover {
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  color: #fff;
}
.social-btn svg { width: 18px; height: 18px; }

.floating-socials {
  position: fixed;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 44;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: none;
}
.floating-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.55rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 24, 34, 0.72);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px -28px rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  pointer-events: auto;
  transition: width 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}
.floating-social-link:hover {
  width: 9.2rem;
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  transform: translateX(0.12rem);
}
.floating-social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 1.2rem;
}
.floating-social-link span {
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.floating-social-link:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .floating-socials {
    left: 0.35rem;
    top: 52%;
    gap: 0.34rem;
  }
  .floating-social-link,
  .floating-social-link:hover {
    width: 2.05rem;
    min-height: 2.05rem;
    padding: 0.48rem;
    transform: none;
  }
  .floating-social-link svg {
    width: 1.05rem;
    height: 1.05rem;
    flex-basis: 1.05rem;
  }
  .floating-social-link span {
    display: none;
  }
}

/* Standalone site footer (bottom of page) */
.site-footer {
  background: hsl(210, 55%, 6%);
  padding: 1.75rem 0;
  margin-top: 0;
  color: rgba(255,255,255,0.5);
  box-shadow: 0 32px 0 hsl(210, 55%, 6%);
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.site-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .site-footer-brand { align-items: flex-start; }
}
.site-footer-logo {
  display: inline-flex;
  align-items: center;
  width: 130px;
  text-decoration: none;
}
.site-footer-logo img {
  width: 100%;
  height: auto;
}
.site-footer-credit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  color: rgba(255,255,255,0.46);
  font-size: 0.78rem;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .site-footer-credit { justify-content: flex-start; }
}
.site-footer-credit a {
  color: rgba(255,255,255,0.54);
  text-decoration: none;
}
.site-footer-credit a:hover {
  color: hsl(var(--sunset));
}
.site-footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); }

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-top {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: hsl(var(--sunset));
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px hsl(var(--sunset) / 0.3);
  z-index: 40;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background-color 0.2s;
}
.scroll-top.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.scroll-top:hover { background: hsl(var(--sunset-light)); }
.scroll-top svg { width: 20px; height: 20px; }

.floating-booking-cta {
  position: fixed;
  left: clamp(0.45rem, 1vw, 0.9rem);
  bottom: clamp(0.75rem, 1.8vw, 1.25rem);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  pointer-events: none;
}

.floating-booking-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(3.65rem, 6.4vw, 4.75rem);
  height: clamp(3.65rem, 6.4vw, 4.75rem);
  padding: 0.6rem;
  border: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 32% 25%, hsl(var(--sunset-light)), hsl(var(--sunset)) 62%, hsl(24, 92%, 45%) 100%);
  color: #fff;
  box-shadow: 0 22px 48px -22px hsl(var(--sunset)), 0 0 0 8px rgba(255, 255, 255, 0.14);
  pointer-events: auto;
  animation: floatingBookingLevitate 3.4s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-booking-button::before {
  content: '';
  position: absolute;
  inset: -0.4rem;
  border: 1px solid hsl(var(--sunset) / 0.28);
  border-radius: inherit;
  animation: floatingBookingPulse 2.4s ease-out infinite;
}

.floating-booking-button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 58px -22px hsl(var(--sunset)), 0 0 0 10px rgba(255, 255, 255, 0.16);
}

.floating-booking-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.2));
}

.floating-booking-hint {
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  margin-left: 0.35rem;
  margin-bottom: -0.35rem;
  color: hsl(var(--sunset));
  transform: rotate(-5deg) translateX(-0.25rem);
  animation: floatingBookingHint 3.4s ease-in-out infinite;
}

.floating-booking-hint span {
  display: inline-flex;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid hsl(var(--sunset) / 0.18);
  color: hsl(var(--teal-deep));
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 14px 30px -24px rgba(0, 40, 70, 0.55);
}

.floating-booking-hint svg {
  width: 3.55rem;
  height: 2.45rem;
  margin-left: -1.25rem;
  margin-bottom: -2.05rem;
  color: hsl(var(--sunset));
  transform: rotate(26deg) translate(-0.95rem, 0.85rem);
}

@keyframes floatingBookingLevitate {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes floatingBookingHint {
  0%, 100% { transform: rotate(-5deg) translate(-0.25rem, 0); }
  50% { transform: rotate(-5deg) translate(-0.25rem, -5px); }
}

@keyframes floatingBookingPulse {
  0% { opacity: 0.6; transform: scale(0.96); }
  100% { opacity: 0; transform: scale(1.25); }
}

@media (max-width: 640px) {
  .floating-booking-cta {
    left: 0.45rem;
    bottom: 0.65rem;
  }
  .floating-booking-hint {
    margin-left: 0.2rem;
  }
  .floating-booking-hint span {
    font-size: 0.76rem;
    padding: 0.45rem 0.7rem;
  }
  .floating-booking-hint svg {
    width: 2.8rem;
    margin-left: -0.95rem;
    margin-bottom: -1.75rem;
    transform: rotate(26deg) translate(-0.85rem, 0.7rem);
  }
}

/* =============================================
   BOOKING MODAL (6-step wizard)
   ============================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: hsl(var(--navy-dark) / 0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }

.modal.booking {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 640px;
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-backdrop.open .modal.booking { transform: scale(1) translateY(0); }
.modal-backdrop[data-current-step="summary"] .modal.booking {
  max-width: 720px;
  max-height: min(94dvh, 900px);
}
.modal-backdrop[data-current-step="trip"] .modal.booking,
.modal-backdrop[data-current-step="range"] .modal.booking,
.modal-backdrop[data-current-step="contactRequest"] .modal.booking,
.modal-backdrop[data-current-step="success"] .modal.booking {
  max-width: 720px;
}

/* Sticky header */
.booking-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1rem;
  flex-shrink: 0;
}
.booking-stepnum {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--sunset));
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.booking-stepttl {
  margin-top: 0.375rem;
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.2;
}
.booking-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color 0.2s;
}
.booking-close:hover { background: #e5e7eb; }
.booking-close svg { width: 18px; height: 18px; }

/* Progress bar */
.booking-progress {
  height: 3px;
  background: var(--muted);
  margin: 0 1.75rem;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}
.booking-progress-fill {
  height: 100%;
  width: 16.66%;
  background: hsl(var(--sunset));
  border-radius: 999px;
  transition: width 0.35s ease;
}

/* Body (scrollable) */
.booking-body {
  padding: 1.25rem 1.75rem 0.5rem;
  overflow-y: auto;
  overflow-x: visible;
  flex: 1;
  min-height: 0;
  scrollbar-gutter: stable;
}
.booking-step[hidden],
#bookingCateringSingleGroup[hidden],
.booking-catering-multi[hidden] {
  display: none !important;
}

/* STEP 0: Trip type */
.booking-triptype {
  display: grid;
  gap: 0.875rem;
}
@media (min-width: 520px) { .booking-triptype { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.booking-trip {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 1.375rem 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}
.booking-trip:hover {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.04);
  transform: translateY(-2px);
}
.booking-trip.active {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.06);
}
.booking-trip-icon {
  width: 44px; height: 44px;
  padding: 0.625rem;
  border-radius: 0.75rem;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
}
.booking-trip h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}
.booking-trip p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.45;
}
/* STEP: Long trip dates */
.booking-range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

/* STEP 1: Rivers grid */
.booking-rivers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.75rem;
}
@media (min-width: 640px) { .booking-rivers { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.booking-river {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  border-radius: 0.875rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: border-color 0.2s, transform 0.2s;
}
.booking-river:hover { transform: translateY(-2px); }
.booking-river.active { border-color: hsl(var(--sunset)); }
.booking-river-img {
  position: relative;
  height: 90px;
  overflow: hidden;
}
.booking-river-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.booking-river:hover .booking-river-img img { transform: scale(1.06); }
.booking-river-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--navy-dark) / 0.85), transparent 60%);
}
.booking-river-body {
  position: absolute;
  left: 0.625rem; right: 0.625rem; bottom: 0.5rem;
  z-index: 2;
}
.booking-river-body h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.booking-river-body p {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.75);
}
.booking-river-check {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: hsl(var(--sunset));
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.booking-river.active .booking-river-check { display: flex; }
.booking-river-check svg { width: 14px; height: 14px; }

/* STEP 2: River summary + routes */
.booking-river-summary {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: hsl(var(--sunset) / 0.06);
  border: 1px solid hsl(var(--sunset) / 0.2);
  margin-bottom: 1rem;
}
.booking-river-summary img {
  width: 52px; height: 52px;
  border-radius: 0.625rem;
  object-fit: cover;
  flex-shrink: 0;
}
.booking-river-summary .rs-body { flex: 1; min-width: 0; }
.booking-river-summary .rs-body h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
}
.booking-river-summary .rs-body p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.booking-routes { display: flex; flex-direction: column; gap: 0.625rem; }
.booking-route {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 0.875rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s;
}
.booking-route:hover {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.04);
  transform: translateY(-1px);
}
.booking-route.active {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.06);
}
.booking-route-body { flex: 1; min-width: 0; }
.booking-route-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.booking-route-pair {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  color: var(--foreground);
  font-size: 0.9375rem;
  font-weight: 600;
}
.booking-route-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: hsl(var(--sunset));
  flex-shrink: 0;
}
.booking-route-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(to right, hsl(var(--sunset)) 0 4px, transparent 4px 8px);
  min-width: 20px;
}
.booking-route-km {
  font-size: 0.875rem;
  font-weight: 700;
  color: hsl(var(--sunset));
  flex-shrink: 0;
}
.booking-route-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
}
.booking-route-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}
.booking-route-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.booking-route-day-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.booking-route-segment {
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: #fff;
}
.booking-route-segment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}
.booking-route-segment-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.booking-route-km-total .km-unit {
  display: inline-block;
  margin-left: 0.2rem;
}
.booking-route-day {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: var(--muted);
}
.booking-route-day-label {
  min-width: 4.5rem;
  border-radius: 999px;
  padding: 0.275rem 0.625rem;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}
.booking-route-day-copy {
  flex: 1;
  min-width: 0;
}
.booking-route-day-path {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}
.booking-route-day-meta {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* STEP 3: Counters */
.booking-counter-card {
  padding: 1.125rem 1.25rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 1rem;
  margin-bottom: 0.875rem;
}
.booking-counter-card label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.booking-counter-card label svg { width: 18px; height: 18px; color: hsl(var(--sunset)); }
.booking-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.booking-counter button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.booking-counter button:hover:not(:disabled) {
  background: hsl(var(--sunset) / 0.08);
  border-color: hsl(var(--sunset));
}
.booking-counter button:disabled { opacity: 0.4; cursor: not-allowed; }
.booking-counter span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  min-width: 2.5rem;
  text-align: center;
}
.booking-counter.small button { width: 32px; height: 32px; font-size: 1.125rem; }
.booking-counter.small span { font-size: 1.125rem; min-width: 2rem; }
.booking-counter-note {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.75rem;
  color: hsl(var(--sunset));
  font-weight: 600;
}

/* STEP 4: Kayaks */
.booking-seats-info {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--teal-deep) / 0.08);
  color: hsl(var(--teal-deep));
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}
.booking-seats-info.warn {
  background: hsl(0 70% 95%);
  color: hsl(0 70% 40%);
}
.booking-kayak {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  margin-bottom: 0.625rem;
}
.booking-kayak:hover, .booking-kayak.active {
  border-color: hsl(var(--sunset));
  box-shadow: 0 4px 16px -4px hsl(var(--sunset) / 0.2);
}
.booking-kayak-icon {
  width: 36px; height: 36px;
  padding: 0.375rem;
  color: hsl(var(--sunset));
  flex-shrink: 0;
}
.booking-kayak-body { flex: 1; min-width: 0; }
.booking-kayak-label {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
}
.booking-kayak-sub {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.booking-kayak-note {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.72rem;
  line-height: 1.3;
  color: hsl(var(--teal-deep));
  font-weight: 700;
}
.booking-kayak-note-warning {
  color: #b45309;
}
.booking-vista-addon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid hsl(var(--sunset) / 0.28);
  background: hsl(var(--sunset) / 0.06);
  border-radius: 0.75rem;
}
.booking-vista-addon-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.booking-vista-addon-title {
  color: var(--foreground);
  font-size: 0.78rem;
  font-weight: 800;
}
.booking-vista-addon-note {
  color: var(--muted-foreground);
  font-size: 0.72rem;
  line-height: 1.35;
}
.booking-vista-addon-counter {
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .booking-vista-addon {
    align-items: flex-start;
    flex-direction: column;
  }
  .booking-vista-addon-counter {
    align-self: flex-start;
  }
}
.booking-kayak.unavailable {
  opacity: 0.62;
  background: hsl(210, 18%, 98%);
}
.booking-kayak.unavailable:hover {
  border-color: var(--border);
  box-shadow: none;
  transform: none;
}

/* STEP 5: Summary */
.booking-summary {
  border: 1px solid hsl(var(--teal-mid) / 0.16);
  border-radius: 1.15rem;
  padding: 0.35rem 1.125rem;
  margin-bottom: 1rem;
  background:
    radial-gradient(circle at 0% 0%, hsl(var(--sunset) / 0.08), transparent 16rem),
    linear-gradient(180deg, #fff 0%, hsl(195, 30%, 98%) 100%);
  box-shadow: 0 16px 34px -30px rgba(0, 40, 70, 0.45);
}
.modal-backdrop[data-current-step="summary"] .booking-body {
  background:
    radial-gradient(circle at 10% 0%, hsl(var(--sunset) / 0.08), transparent 16rem),
    linear-gradient(180deg, #fff 0%, hsl(195, 26%, 97%) 100%);
}
.booking-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  font-size: 0.875rem;
}
.booking-summary-row span {
  color: var(--muted-foreground);
  font-weight: 700;
}
.booking-summary-row strong {
  font-family: var(--font-display);
  color: var(--foreground);
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}
.booking-summary-sep { height: 1px; background: hsl(var(--teal-mid) / 0.12); }
.booking-pricelist {
  margin-bottom: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid hsl(var(--sunset) / 0.18);
  border-radius: 1.15rem;
  background: #fffaf5;
  box-shadow: 0 16px 32px -30px rgba(234, 88, 12, 0.45);
}
.booking-pricelist-title {
  margin-bottom: 0.6rem;
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.booking-pricelist-rows {
  display: grid;
  gap: 0.15rem;
}
.booking-summary-client {
  margin-bottom: 1rem !important;
  padding: 1rem !important;
  border: 1px solid hsl(var(--teal-mid) / 0.14) !important;
  border-radius: 1.15rem !important;
  background: linear-gradient(180deg, #fff 0%, hsl(195, 30%, 98%) 100%) !important;
  box-shadow: 0 16px 34px -32px rgba(0, 40, 70, 0.42) !important;
}
.booking-summary-client input {
  border-radius: 0.75rem !important;
  border-color: var(--border) !important;
}
.booking-long-contact-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.booking-long-contact-fields {
  display: grid;
  gap: 0.65rem;
}
.booking-long-contact-fields input {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.booking-long-contact-fields input:focus {
  border-color: hsl(var(--sunset));
  box-shadow: 0 0 0 4px hsl(var(--sunset) / 0.12);
}
.booking-long-request-summary {
  margin-bottom: 1rem;
  padding: 0.25rem 1rem;
  border: 1px solid hsl(var(--sunset) / 0.16);
  border-radius: 1rem;
  background: #fffaf5;
}
.booking-long-submit {
  width: 100%;
  border-radius: 999px !important;
  background: hsl(var(--sunset)) !important;
  color: #fff !important;
  border: none !important;
  padding: 0.95rem 1.25rem !important;
  font-weight: 800 !important;
  box-shadow: 0 18px 34px -24px hsl(var(--sunset)) !important;
}
.booking-long-submit:disabled {
  opacity: 0.75;
  cursor: wait;
}
.booking-long-success {
  margin-top: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-weight: 700;
  text-align: center;
}
.booking-long-success[hidden] {
  display: none;
}
.booking-terms {
  display: grid;
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: flex-start;
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid hsl(var(--sunset) / 0.2);
  border-radius: 0.95rem;
  background: #fffaf5;
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.45;
  cursor: pointer;
}
.booking-terms input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.1rem;
  accent-color: hsl(var(--sunset));
  cursor: pointer;
}
.booking-terms a {
  color: hsl(var(--sunset));
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.booking-terms a:hover {
  color: hsl(var(--sunset-dark));
}
.booking-summary-contact .btn {
  border-radius: 999px !important;
  box-shadow: 0 16px 30px -22px hsl(var(--sunset)) !important;
}
.booking-call-hint {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.booking-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.booking-call:hover { opacity: 0.92; transform: translateY(-1px); }

.booking-step[data-step="success"] > div {
  padding: 0.5rem 0 0 !important;
}
.booking-step[data-step="success"] svg {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 1rem !important;
  color: #22c55e !important;
  filter: drop-shadow(0 12px 24px rgba(34, 197, 94, 0.18));
}
.booking-step[data-step="success"] h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.55rem, 4vw, 2rem) !important;
  color: var(--foreground) !important;
}
.booking-step[data-step="success"] p {
  line-height: 1.55 !important;
}
.booking-step[data-step="success"] div[style*="background"] {
  border: 1px solid hsl(var(--sunset) / 0.18) !important;
  border-radius: 1.2rem !important;
  background:
    radial-gradient(circle at 100% 0%, hsl(var(--sunset) / 0.08), transparent 14rem),
    linear-gradient(180deg, #fff 0%, #fffaf5 100%) !important;
  box-shadow: 0 18px 36px -30px rgba(234, 88, 12, 0.55) !important;
  padding: 1.15rem !important;
}
.booking-payment-card {
  margin-bottom: 1.25rem;
  padding: 1.2rem;
  text-align: left;
  color: #1f2937;
  border: 1px solid hsl(var(--sunset) / 0.28);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, hsl(var(--sunset) / 0.09), transparent 14rem),
    linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  box-shadow: 0 18px 36px -30px rgba(234, 88, 12, 0.55);
}
.booking-payment-head {
  margin-bottom: 0.85rem;
}
.booking-payment-head strong {
  display: block;
  color: #9a3412;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
}
.booking-payment-head span {
  display: block;
  margin-top: 0.25rem;
  color: #9a3412;
  font-size: 0.82rem;
}
.booking-payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.82rem 0;
  border-top: 1px solid #fed7aa;
}
.booking-payment-row span {
  display: block;
  margin-bottom: 0.25rem;
  color: #9a3412;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.booking-payment-row strong {
  display: block;
  color: #111827;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.booking-payment-row-total strong {
  color: hsl(var(--sunset));
  font-size: 1.12rem;
}
.booking-copy-btn {
  min-width: 5.8rem;
  padding: 0.58rem 0.78rem;
  border: 1px solid #fdba74;
  border-radius: 999px;
  background: #fff;
  color: #9a3412;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
}
.booking-copy-btn:hover,
.booking-copy-btn.copied {
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  color: #fff;
}
@media (max-width: 520px) {
  .booking-payment-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .booking-copy-btn {
    width: 100%;
  }
}
.booking-step[data-step="success"] button.btn {
  border: none !important;
  border-radius: 999px !important;
  background: hsl(var(--sunset)) !important;
  color: #fff !important;
  padding: 0.95rem 1.25rem !important;
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  box-shadow: 0 16px 30px -22px hsl(var(--sunset)) !important;
}

/* Footer nav */
.booking-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.75rem 1.25rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.booking-back, .booking-next {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, opacity 0.2s, transform 0.2s;
}
.booking-back {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
}
.booking-back:hover { background: var(--muted); }
.booking-back svg { width: 14px; height: 14px; }
.booking-back.hidden { visibility: hidden; }
.booking-next {
  border: none;
  background: hsl(var(--sunset));
  color: #fff;
  margin-left: auto;
}
.booking-next:hover:not(:disabled) { opacity: 0.92; transform: translateY(-1px); }
.booking-next:disabled { opacity: 0.4; cursor: not-allowed; }
.booking-next svg { width: 14px; height: 14px; }
.booking-nav.hidden { display: none; }

/* =============================================
   NOWY DATE PICKER (FLATPICKR OVERRIDES)
   ============================================= */
.booking-date-wrapper {
  position: relative;
  width: 100%;
}
.booking-label-lead {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--foreground);
}
.booking-date-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--muted-foreground);
  pointer-events: none;
}
.booking-date-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1rem 1rem 2.75rem;
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.booking-date-input:focus, .booking-date-input:active {
  border-color: hsl(var(--sunset));
  box-shadow: 0 0 0 4px hsl(var(--sunset) / 0.15);
}
.booking-date-range-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.875rem;
}
.booking-date-range-preview[hidden] {
  display: none;
}
.booking-date-preview-card {
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid hsl(var(--sunset) / 0.2);
  background: hsl(var(--sunset) / 0.04);
}
.booking-date-preview-card-auto {
  background: #f8fafc;
}
.booking-date-preview-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--sunset));
}
.booking-date-preview-card strong {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--foreground);
}
.booking-date-hint {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.8125rem;
  font-weight: 600;
}

.booking-time-card {
  border: 1px solid hsl(var(--teal-mid) / 0.15);
  border-radius: 1.15rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 100% 0%, hsl(var(--sunset) / 0.07), transparent 12rem),
    linear-gradient(180deg, #fff 0%, hsl(195, 30%, 98%) 100%);
  box-shadow: 0 18px 38px -32px rgba(0, 40, 70, 0.45);
}
.booking-time-lead {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--foreground);
}
.booking-time-copy {
  margin: 0 0 1rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  font-size: 0.9rem;
}
.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.booking-time-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  min-height: 92px;
  padding: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: #fff;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.booking-time-option:hover {
  border-color: hsl(var(--sunset));
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -24px hsl(var(--sunset));
}
.booking-time-option.active {
  border-color: hsl(var(--sunset));
  background: #fff7ed;
  box-shadow: 0 16px 34px -26px hsl(var(--sunset));
}
.booking-time-option.unavailable {
  opacity: 0.48;
  cursor: not-allowed;
  background: #f8fafc;
  transform: none;
  box-shadow: none;
}
.booking-time-hour {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.booking-time-spots {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 700;
}
.booking-time-hint {
  margin: 0.9rem 0 0;
  color: #0f4c5c;
  background: hsl(var(--teal-mid) / 0.08);
  border-radius: 0.8rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.flatpickr-calendar {
  font-family: var(--font-body) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
  border-radius: 1rem !important;
  padding: 0.5rem !important;
  z-index: 2000 !important;
  box-sizing: border-box !important;
  width: min(340px, calc(100vw - 24px)) !important;
  max-width: min(340px, calc(100vw - 24px)) !important;
  overflow: visible !important;
}
.flatpickr-months,
.flatpickr-weekdays,
.flatpickr-weekdaycontainer,
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days,
.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.flatpickr-day {
  width: calc(100% / 7) !important;
  max-width: none !important;
  flex-basis: calc(100% / 7) !important;
  box-sizing: border-box !important;
}
.flatpickr-day.selected {
  background: hsl(var(--sunset)) !important;
  border-color: hsl(var(--sunset)) !important;
}

/* =============================================
   NOWE STYLE DLA ZAKLADEK I DODATKOW (PREMIUM UI)
   ============================================= */
.booking-addon-group {
  margin-bottom: 2rem;
}
.booking-addon-title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}
.booking-addon-title svg {
  width: 20px; height: 20px; color: hsl(var(--sunset));
}
.booking-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.booking-chip {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-chip:hover {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.05);
}
.booking-chip.active {
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  color: #fff;
  box-shadow: 0 4px 10px -2px hsl(var(--sunset) / 0.4);
}

.booking-toggle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  margin-bottom: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-toggle-card:hover {
  border-color: hsl(var(--sunset));
}
.booking-toggle-card.active {
  border-color: hsl(var(--sunset));
  background: hsl(var(--sunset) / 0.04);
}
#bookingServicesList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 500px) {
  #bookingServicesList {
    grid-template-columns: 1fr 1fr;
  }
}
.bt-body {
  text-align: left;
  flex: 1;
  padding-right: 1.5rem;
}
.bt-label {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9375rem;
}
.bt-sub {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 2px;
}
.bt-switch {
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 999px;
  position: relative;
  transition: background 0.3s;
  flex-shrink: 0;
}
.bt-dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.booking-toggle-card.active .bt-switch {
  background: hsl(var(--sunset));
}
.booking-toggle-card.active .bt-dot {
  transform: translateX(16px);
}

.booking-bag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  margin-bottom: 0.625rem;
  transition: border-color 0.2s;
}
.booking-bag-row:hover {
  border-color: hsl(var(--sunset) / 0.5);
}
.bag-label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.booking-lodging-start {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: hsl(var(--muted) / 0.45);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}
.booking-lodging-start strong {
  color: var(--foreground);
}
.booking-lodging-change-date {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: hsl(var(--sunset));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.booking-lodging-change-date:hover,
.booking-lodging-change-date:focus-visible {
  text-decoration: underline;
}
.booking-lodging-start-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 520px) {
  .booking-lodging-start {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}
.booking-lodging-options {
  display: grid;
  gap: 0.875rem;
}
.booking-lodging-card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  padding: 0.25rem;
}
.booking-lodging-card .booking-toggle-card {
  margin-bottom: 0;
  border: 0;
}
.booking-lodging-controls {
  display: grid;
  gap: 0.875rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
}
.booking-lodging-controls[hidden] {
  display: none;
}
.booking-lodging-control,
.booking-lodging-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--foreground);
  font-weight: 700;
  font-size: 0.875rem;
}
.booking-lodging-date {
  align-items: flex-start;
  flex-direction: column;
}
.booking-lodging-date input {
  width: 100%;
}
.booking-lodging-availability {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  font-weight: 700;
}
.booking-lodging-availability.bad {
  color: #dc2626;
}

.badge-free {
  background: hsl(142 71% 45% / 0.15);
  color: hsl(142 71% 35%);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9em;
}

.booking-free-accessories {
    margin: 10px 0;
    font-size: 15px;
    color: #374151;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 7px 0;
    font-size: 14px;
    color: var(--foreground);
}
.price-row span {
    color: #475569;
}
.price-row strong {
    flex-shrink: 0;
    font-family: var(--font-display);
    color: var(--foreground);
}
.price-row.total {
    align-items: center;
    padding: 12px 14px;
    border-radius: 0.9rem;
    background: hsl(var(--sunset) / 0.1);
    font-size: 17px;
    font-weight: 700;
    color: hsl(var(--sunset));
    margin-top: 5px;
}
.price-row.total strong {
    color: hsl(var(--sunset));
}
.price-sep {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

.booking-catering-desc {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.booking-catering-row,
.booking-catering-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.booking-catering-row-copy,
.booking-catering-day-copy {
  flex: 1;
  min-width: 0;
}
.booking-catering-row-title,
.booking-catering-day-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
}
.booking-catering-row-meta,
.booking-catering-day-meta {
  margin-top: 0.2rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.booking-catering-multi {
  display: grid;
  gap: 1rem;
}
.booking-catering-option {
  position: relative;
}
.booking-catering-option.catering-unavailable {
  opacity: 0.52;
}
.booking-catering-option.catering-unavailable > * {
  filter: blur(1px);
  pointer-events: none;
  user-select: none;
}
.booking-catering-unavailable-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #fed7aa;
  border-radius: 0.75rem;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}
.booking-catering-unavailable-note::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.02rem;
  border-radius: 999px;
  background: #fed7aa;
  color: #9a3412;
  font-size: 0.78rem;
  line-height: 1;
}
.booking-catering-unavailable-note[hidden] {
  display: none;
}
.booking-catering-day-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  background: hsl(var(--sunset) / 0.03);
}
.booking-catering-day-label {
  margin-bottom: 0.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--sunset));
}
.booking-catering-counter {
  margin-top: 0.875rem;
}

.booking-remarks-card {
  display: grid;
  gap: 1rem;
}
.booking-remarks-card label {
  margin-bottom: 0;
}
.booking-remarks-lead {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.55;
}
.booking-remarks-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.booking-remarks-panel {
  display: grid;
  gap: 0.55rem;
}
.booking-remarks-panel[hidden] {
  display: none;
}
.booking-remarks-panel textarea {
  width: 100%;
  min-height: 140px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  padding: 0.875rem 1rem;
  background: #fff;
  color: var(--foreground);
  font: inherit;
  line-height: 1.55;
}
.booking-remarks-panel textarea:focus {
  outline: none;
  border-color: hsl(var(--sunset));
  box-shadow: 0 0 0 3px hsl(var(--sunset) / 0.12);
}
.booking-remarks-hint {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.8rem;
  font-weight: 700;
}

.booking-fill-people {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.2s;
  width: auto !important;
  height: auto !important;
  min-width: 130px;
}
.booking-fill-people:hover {
  background: hsl(var(--sunset) / 0.1);
  border-color: hsl(var(--sunset));
  color: hsl(var(--sunset));
}

/* Nowe szlaki trudnosc */
.route-diff { display: inline-flex; gap: 3px; align-items: center; }
.diff-bar { width: 12px; height: 4px; border-radius: 2px; background: var(--border); }
.diff-bar.filled { background: hsl(var(--sunset)); }
.route-time { padding-right: 0.5rem; margin-right: 0.5rem; border-right: 1px solid var(--border); display: inline-block; }
.booking-route-arrow { color: var(--muted-foreground); margin: 0 0.5rem; display: inline-flex; align-items: center; }
.booking-route-arrow svg { width: 14px; height: 14px; opacity: 0.6; }

@media (max-width: 640px) {
  .modal-backdrop {
    align-items: stretch;
    padding: 0.55rem;
  }
  .modal.booking {
    max-width: calc(100vw - 20px);
    max-height: calc(100dvh - 1.1rem);
    border-radius: 1.1rem;
  }
  .booking-header {
    padding: 1.05rem 1rem 0.85rem;
  }
  .booking-body {
    padding: 1rem 1rem 0.5rem;
  }
  .booking-nav {
    padding: 0.85rem 1rem 1rem;
  }
  .booking-summary,
  .booking-pricelist,
  .booking-summary-client {
    border-radius: 0.95rem !important;
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }
  .booking-summary-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.2rem;
  }
  .booking-summary-row strong {
    text-align: left;
  }
  .price-row {
    flex-direction: column;
    gap: 0.2rem;
  }
  .price-row.total {
    flex-direction: row;
    align-items: center;
  }
  .booking-date-range-preview {
    grid-template-columns: 1fr;
  }
  .booking-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-range-grid,
  .booking-triptype {
    grid-template-columns: 1fr;
  }
  .flatpickr-calendar {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    width: calc(100vw - 24px) !important;
    max-width: 340px !important;
    min-width: 0 !important;
  }
  .flatpickr-innerContainer,
  .flatpickr-rContainer,
  .flatpickr-days,
  .dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  .flatpickr-day {
    max-width: none !important;
  }
  .booking-route,
  .booking-route-multi {
    align-items: stretch;
  }
  .booking-route-topline {
    flex-direction: column;
    gap: 0.5rem;
  }
  .booking-route-day {
    flex-direction: column;
  }
  .booking-route-segment-head,
  .booking-catering-row,
  .booking-catering-day-head {
    flex-direction: column;
    align-items: stretch;
  }
  .booking-fill-people {
    width: 100% !important;
    min-width: 0;
    margin-left: 0;
  }
}

/* =============================================
   NASZE KAJAKI PAGE
   ============================================= */
.kayak-page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  background: linear-gradient(135deg, hsl(var(--navy-dark)) 0%, hsl(var(--navy)) 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.kayak-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, hsl(var(--sunset) / 0.15), transparent 50%),
                    radial-gradient(circle at 80% 70%, hsl(var(--teal-mid) / 0.2), transparent 50%);
  pointer-events: none;
}
.kayak-page-hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) { .kayak-page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .kayak-page-hero h1 { font-size: 3.75rem; } }
.kayak-page-hero p {
  position: relative;
  margin: 1rem auto 0;
  max-width: 40rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.0625rem;
}

.videos-page {
  min-height: 68vh;
  padding: clamp(3rem, 6vw, 5.5rem) 1.25rem;
  background:
    radial-gradient(circle at 15% 20%, hsl(var(--sunset) / 0.08), transparent 24rem),
    linear-gradient(180deg, hsl(195, 30%, 97%) 0%, #fff 100%);
}
.videos-stage {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.video-slide {
  width: 100%;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.video-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.video-slide.entering {
  opacity: 0;
  transform: translateY(42px) scale(0.98);
}
.video-slide.leaving {
  opacity: 0;
  transform: translateY(-20px) scale(0.985);
}
.video-player {
  width: min(100%, 980px);
  max-height: min(68vh, 720px);
  border-radius: clamp(1rem, 2vw, 1.75rem);
  background: #020617;
  box-shadow: 0 28px 70px -40px rgba(0, 35, 56, 0.8);
  object-fit: contain;
}
.video-slide.vertical .video-player {
  width: min(420px, 92vw);
  max-height: 76vh;
}
.video-next {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 18px 36px -24px hsl(var(--sunset));
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-next:hover {
  transform: translateY(2px);
  background: hsl(var(--sunset-light));
}
.video-next svg {
  width: 1.15rem;
  height: 1.15rem;
}
.videos-empty {
  max-width: 680px;
  padding: 2rem;
  text-align: center;
  border: 1px solid hsl(var(--teal-mid) / 0.16);
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: 0 20px 50px -38px rgba(0, 40, 70, 0.5);
}
.videos-empty h2 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  color: var(--foreground);
}
.videos-empty p {
  color: var(--muted-foreground);
}

@media (max-width: 640px) {
  .videos-page {
    padding: 2.5rem 0.9rem;
  }
  .video-player {
    max-height: 64vh;
    border-radius: 1rem;
  }
  .video-next span {
    font-size: 0.9rem;
  }
}

body.videos-page-body {
  --videos-nav-space: 6.35rem;
  --videos-bottom-space: 1.25rem;
  --videos-arrow-space: 5.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, hsl(var(--sunset) / 0.18), transparent 22rem),
    radial-gradient(circle at 82% 20%, hsl(var(--teal-mid) / 0.5), transparent 28rem),
    linear-gradient(135deg, hsl(210, 28%, 10%) 0%, hsl(198, 68%, 14%) 48%, hsl(195, 55%, 9%) 100%);
}
body.videos-page-body .videos-page-hero,
body.videos-page-body .floating-socials,
body.videos-page-body .floating-booking-cta,
body.videos-page-body .scroll-top {
  display: none;
}
body.videos-page-body .videos-page {
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: var(--videos-nav-space) 1.25rem var(--videos-bottom-space);
  background:
    linear-gradient(120deg, rgba(255, 122, 24, 0.08), transparent 34%),
    radial-gradient(circle at 50% 105%, rgba(255,255,255,0.12), transparent 28rem);
}
body.videos-page-body .videos-stage {
  width: min(1100px, 100%);
  height: calc(100svh - var(--videos-nav-space) - var(--videos-bottom-space));
  min-height: 0;
  justify-content: center;
  gap: clamp(0.9rem, 2svh, 1.4rem);
}
body.videos-page-body .video-slide {
  flex: 0 1 auto;
  min-height: 0;
}
body.videos-page-body .video-slide.entering {
  opacity: 0;
  transform: translateY(70px) scale(0.965);
}
body.videos-page-body .video-slide.leaving {
  opacity: 0;
  transform: translateY(-40px) scale(0.975);
}
body.videos-page-body .video-player {
  width: min(100%, 1040px);
  max-height: min(68svh, calc(100svh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-space)));
  box-shadow:
    0 34px 90px -44px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255,255,255,0.1);
}
body.videos-page-body .video-slide.vertical .video-player {
  width: min(390px, 84vw);
  max-height: min(68svh, calc(100svh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-space)));
}
body.videos-page-body .video-next {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  gap: 0;
  padding: 0;
  border-radius: 50%;
  box-shadow:
    0 20px 40px -22px hsl(var(--sunset)),
    0 0 0 10px hsl(var(--sunset) / 0.12);
  animation: video-arrow-pulse 1.9s ease-in-out infinite;
}
body.videos-page-body .video-next span {
  display: none;
}
body.videos-page-body .video-next:hover {
  transform: translateY(4px) scale(1.04);
}
body.videos-page-body .video-next svg {
  width: 1.35rem;
  height: 1.35rem;
}
@keyframes video-arrow-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(0.32rem); }
}

@media (max-width: 640px) {
  body.videos-page-body {
    --videos-nav-space: 5.35rem;
    --videos-bottom-space: 1rem;
    --videos-arrow-space: 5.15rem;
    position: fixed;
    width: 100%;
  }
  body.videos-page-body .videos-page {
    padding: var(--videos-nav-space) 0.85rem var(--videos-bottom-space);
  }
  body.videos-page-body .video-player {
    max-height: min(66svh, calc(100svh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-space)));
    border-radius: 1rem;
  }
  body.videos-page-body .video-slide.vertical .video-player {
    width: min(84vw, 360px);
    max-height: min(66svh, calc(100svh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-space)));
  }
  body.videos-page-body .video-next {
    width: 2.9rem;
    height: 2.9rem;
  }
}

html.videos-html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, hsl(var(--sunset) / 0.18), transparent 22rem),
    radial-gradient(circle at 82% 20%, hsl(var(--teal-mid) / 0.5), transparent 28rem),
    linear-gradient(135deg, hsl(210, 28%, 10%) 0%, hsl(198, 68%, 14%) 48%, hsl(195, 55%, 9%) 100%);
}
html.videos-html body.videos-page-body {
  position: static;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
}
body.videos-page-body {
  --videos-nav-space: 8.1rem;
  --videos-bottom-space: 1.1rem;
  --videos-arrow-size: 3.25rem;
  --videos-stage-gap: 1rem;
}
body.videos-page-body .videos-page {
  position: fixed;
  inset: 0;
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  padding: 0;
  display: block;
}
body.videos-page-body .videos-stage {
  position: absolute;
  left: 50%;
  top: calc(var(--videos-nav-space) + ((100dvh - var(--videos-nav-space) - var(--videos-bottom-space)) / 2));
  transform: translate(-50%, -50%);
  width: min(92vw, 920px);
  height: calc(100dvh - var(--videos-nav-space) - var(--videos-bottom-space));
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) var(--videos-arrow-size);
  align-items: center;
  justify-items: center;
  gap: var(--videos-stage-gap);
}
body.videos-page-body .videos-frame {
  position: relative;
  width: 100%;
  height: calc(100dvh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-size) - var(--videos-stage-gap));
  min-height: 0;
  display: grid;
  place-items: center;
}
body.videos-page-body .video-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  flex: none;
}
body.videos-page-body .video-slide[hidden] {
  display: none;
}
body.videos-page-body .video-player {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
body.videos-page-body .video-slide.horizontal .video-player {
  width: min(100%, 920px);
  height: min(100%, 520px);
  max-height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
body.videos-page-body .video-slide.vertical .video-player {
  width: auto;
  height: 100%;
  max-width: min(390px, 78vw);
  max-height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
body.videos-page-body .floating-booking-cta {
  display: flex;
  z-index: 46;
}

@media (max-width: 640px) {
  body.videos-page-body {
    --videos-nav-space: 5.7rem;
    --videos-bottom-space: 1rem;
    --videos-arrow-size: 2.95rem;
    --videos-stage-gap: 0.65rem;
  }
  body.videos-page-body .videos-page {
    padding: 0;
  }
  body.videos-page-body .videos-stage {
    width: calc(100vw - 1.1rem);
    height: calc(100dvh - var(--videos-nav-space) - var(--videos-bottom-space));
  }
  body.videos-page-body .videos-frame {
    width: 100%;
    height: calc(100dvh - var(--videos-nav-space) - var(--videos-bottom-space) - var(--videos-arrow-size) - var(--videos-stage-gap));
  }
  body.videos-page-body .video-player {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0.9rem;
  }
  body.videos-page-body .video-slide.vertical .video-player {
    width: auto;
    height: 100%;
    max-width: min(100%, 78vw);
    max-height: 100%;
    aspect-ratio: 9 / 16;
  }
  body.videos-page-body .video-slide.horizontal .video-player {
    width: 100%;
    height: min(100%, 56vw);
    max-height: 100%;
    aspect-ratio: 16 / 9;
  }
}

/* Final fullscreen video layout. Keep this block last for /filmy. */
html.videos-html,
html.videos-html body.videos-page-body {
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 16% 18%, hsl(var(--sunset) / 0.16), transparent 22rem),
    radial-gradient(circle at 82% 22%, hsl(var(--teal-mid) / 0.46), transparent 30rem),
    linear-gradient(135deg, hsl(210, 28%, 10%) 0%, hsl(198, 68%, 14%) 50%, hsl(195, 55%, 9%) 100%) !important;
}

html.videos-html body.videos-page-body {
  --film-nav-offset: clamp(7.7rem, 9.6dvh, 8.9rem);
  --film-bottom-offset: 1.15rem;
  --film-arrow-size: 3.25rem;
  --film-gap: 1rem;
  --film-max-height: calc(100dvh - var(--film-nav-offset) - var(--film-bottom-offset) - var(--film-arrow-size) - var(--film-gap));
}

html.videos-html body.videos-page-body .videos-page {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  min-height: 100dvh !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  background:
    linear-gradient(120deg, rgba(255, 122, 24, 0.08), transparent 34%),
    radial-gradient(circle at 50% 105%, rgba(255,255,255,0.12), transparent 28rem) !important;
}

html.videos-html body.videos-page-body .videos-stage {
  position: fixed !important;
  inset: var(--film-nav-offset) 0 var(--film-bottom-offset) 0 !important;
  width: 100vw !important;
  height: auto !important;
  min-height: 0 !important;
  transform: none !important;
  display: grid !important;
  grid-template-rows: minmax(0, 1fr) var(--film-arrow-size) !important;
  align-items: center !important;
  justify-items: center !important;
  gap: var(--film-gap) !important;
  pointer-events: none;
}

html.videos-html body.videos-page-body .videos-frame {
  position: relative !important;
  width: 100vw !important;
  height: var(--film-max-height) !important;
  min-height: 0 !important;
  display: grid !important;
  place-items: center !important;
  pointer-events: none;
}

html.videos-html body.videos-page-body .video-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  display: grid !important;
  place-items: center !important;
  flex: none !important;
}

html.videos-html body.videos-page-body .video-slide[hidden] {
  display: none !important;
}

html.videos-html body.videos-page-body .video-player {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 auto !important;
  border-radius: inherit !important;
  background: transparent !important;
  object-fit: cover !important;
  box-shadow: none !important;
  pointer-events: auto;
}

html.videos-html body.videos-page-body .video-shell {
  height: min(var(--film-max-height), 760px, calc(84vw * 1.7778)) !important;
  aspect-ratio: 9 / 16 !important;
  max-width: 84vw !important;
  overflow: hidden !important;
  border-radius: clamp(0.9rem, 1.4vw, 1.35rem) !important;
  background: transparent !important;
  box-shadow:
    0 34px 90px -44px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255,255,255,0.1) !important;
  pointer-events: auto;
}

html.videos-html body.videos-page-body .video-slide.vertical .video-shell {
  height: min(var(--film-max-height), 760px, calc(84vw * 1.7778)) !important;
  aspect-ratio: 9 / 16 !important;
  max-width: 84vw !important;
}

html.videos-html body.videos-page-body .video-slide.horizontal .video-shell {
  width: min(84vw, 920px, calc(var(--film-max-height) * 1.7778)) !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  max-height: min(var(--film-max-height), 620px) !important;
}

html.videos-html body.videos-page-body .video-next {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--film-arrow-size) !important;
  height: var(--film-arrow-size) !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  pointer-events: auto;
}

html.videos-html body.videos-page-body .floating-booking-cta {
  display: flex !important;
  z-index: 46 !important;
}

html.videos-html body.videos-page-body .floating-socials,
html.videos-html body.videos-page-body .scroll-top {
  display: none !important;
}

@media (max-width: 640px) {
  html.videos-html body.videos-page-body {
    --film-nav-offset: 5.9rem;
    --film-bottom-offset: 0.95rem;
    --film-arrow-size: 2.9rem;
    --film-gap: 0.7rem;
  }
  html.videos-html body.videos-page-body .video-shell,
  html.videos-html body.videos-page-body .video-slide.vertical .video-shell {
    height: min(var(--film-max-height), calc(88vw * 1.7778)) !important;
    max-width: 88vw !important;
  }
  html.videos-html body.videos-page-body .video-slide.horizontal .video-shell {
    width: min(92vw, calc(var(--film-max-height) * 1.7778)) !important;
    max-height: min(var(--film-max-height), 58vw) !important;
  }
}

.kayaks-list {
  padding: 5rem 0;
}
@media (min-width: 1024px) { .kayaks-list { padding: 7rem 0; } }

.kayak-tabs-section {
  background: hsl(195, 30%, 97%);
}
.kayak-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 4rem;
}
.kayak-tab {
  position: relative;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  background: #fff;
  color: hsl(var(--teal-deep));
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}
.kayak-tab:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--sunset) / 0.45);
}
.kayak-tab.active {
  background: hsl(var(--sunset));
  border-color: hsl(var(--sunset));
  color: #fff;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.22);
}
.kayak-tab-panels {
  position: relative;
}
.kayak-panel {
  opacity: 1;
  transform: translateY(0);
}
.kayak-panel.entering {
  opacity: 0;
  transform: translateY(18px);
}
.kayak-panel.active {
  animation: kayakPanelIn 0.36s ease both;
}
.kayak-panel.leaving {
  animation: kayakPanelOut 0.22s ease both;
}
@keyframes kayakPanelIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes kayakPanelOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-12px); }
}
.kayak-empty {
  max-width: 620px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 1.25rem;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}
.kayak-empty h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  color: hsl(var(--foreground));
}
.kayak-empty p {
  margin: 0;
  color: hsl(var(--muted-foreground));
}

.kayak-row {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .kayak-row { grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 7rem; }
  .kayak-row.reversed .kayak-row-img { order: 2; }
  .kayak-row.reversed .kayak-row-body { order: 1; }
}
.kayak-row:last-child { margin-bottom: 0; }

.kayak-row-img {
  overflow: hidden;
  border-radius: 1.5rem;
  aspect-ratio: 3/2;
}
.kayak-row-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.kayak-row-img:hover img { transform: scale(1.04); }

.kayak-row-body .tag {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--sunset));
}
.kayak-row-body h2 {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 1024px) { .kayak-row-body h2 { font-size: 2.5rem; } }
.kayak-row-body .tagline {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
}

.kayak-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.kayak-spec {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: hsl(var(--teal-deep) / 0.08);
  border: 1px solid hsl(var(--teal-deep) / 0.15);
  color: hsl(var(--teal-deep));
  font-size: 0.8125rem;
  font-weight: 600;
}
.kayak-spec svg { width: 15px; height: 15px; color: hsl(var(--teal-mid)); }

.kayak-row-desc {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.kayak-feats {
  margin-top: 1.5rem;
  list-style: none;
  display: grid;
  gap: 0.625rem;
}
.kayak-feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--foreground);
}
.kayak-feats li svg { width: 18px; height: 18px; color: hsl(var(--sunset)); flex-shrink: 0; margin-top: 2px; }

.kayak-row-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.kayak-row-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.kayak-row-cta svg { width: 16px; height: 16px; }

/* =============================================
   BAJOKAJAKI INFO PAGES
   ============================================= */
.bajo-info-page {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 12% 8%, hsl(var(--sunset) / 0.08), transparent 26rem),
    linear-gradient(180deg, var(--background) 0%, hsl(195, 35%, 95%) 100%);
}
@media (min-width: 1024px) { .bajo-info-page { padding: 7rem 0; } }

.bajo-info-intro {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 980px) {
  .bajo-info-intro {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 4rem;
  }
}

.bajo-info-image {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  border-radius: 1.6rem;
  box-shadow: 0 30px 70px -48px rgba(0, 40, 70, 0.55);
}
.bajo-info-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 22, 33, 0.46) 100%);
}
.bajo-info-image img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bajo-info-image:hover img { transform: scale(1.04); }

.bajo-info-image-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: hsl(var(--teal-deep));
  font-weight: 800;
  box-shadow: 0 18px 34px -22px rgba(0, 0, 0, 0.45);
}

.bajo-info-copy { max-width: 38rem; }
.bajo-info-eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: hsl(var(--sunset));
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bajo-info-copy h2,
.bajo-info-details h2,
.bajo-info-short-copy h2,
.bajo-info-cta h2 {
  color: var(--foreground);
  font-size: clamp(2rem, 4vw, 3.35rem);
}
.bajo-info-copy p,
.bajo-info-details p,
.bajo-info-short-copy p,
.bajo-info-cta p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 1.03rem;
}

.bajo-info-features {
  max-width: 1180px;
  margin: 3.5rem auto 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 820px) {
  .bajo-info-features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bajo-info-feature {
  position: relative;
  overflow: hidden;
  min-height: 14rem;
  padding: 1.55rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  box-shadow: 0 18px 46px -38px rgba(0, 40, 70, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.bajo-info-feature::after {
  content: '';
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.1);
}
.bajo-info-feature:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--sunset) / 0.32);
  box-shadow: 0 26px 58px -40px rgba(0, 40, 70, 0.58);
}
.bajo-info-feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.2rem;
  border-radius: 0.9rem;
  background: hsl(var(--teal-mid) / 0.1);
  color: hsl(var(--teal-deep));
  font-family: var(--font-display);
  font-weight: 800;
}
.bajo-info-feature h3 {
  margin-bottom: 0.65rem;
  font-size: 1.18rem;
}
.bajo-info-feature p {
  position: relative;
  z-index: 1;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.bajo-info-details {
  max-width: 1180px;
  margin: 1.25rem auto 0;
  display: grid;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, hsl(var(--sunset) / 0.55), hsl(var(--teal-mid) / 0.3)) border-box;
  border: 1px solid transparent;
  border-radius: 1.6rem;
  box-shadow: 0 24px 62px -48px rgba(0, 40, 70, 0.55);
}
@media (min-width: 900px) {
  .bajo-info-details { grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.58fr); }
}
.bajo-info-details ul {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}
.bajo-info-details li {
  position: relative;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  background: hsl(195, 30%, 97%);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  color: hsl(205, 30%, 22%);
  font-weight: 650;
}
.bajo-info-details li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: hsl(var(--sunset));
  transform: translateY(-50%);
}

.bajo-info-gallery,
.bajo-info-video {
  max-width: 1180px;
  margin: 1.25rem auto 0;
}

.bajo-info-section-head {
  max-width: 760px;
  margin-bottom: 1.25rem;
}
.bajo-info-section-head h2 {
  color: var(--foreground);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.bajo-info-section-head p {
  margin-top: 0.8rem;
  color: var(--muted-foreground);
  font-size: 1.03rem;
  line-height: 1.78;
}

.bajo-info-gallery-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 820px) {
  .bajo-info-gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.bajo-info-gallery-card {
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: 0 20px 52px -42px rgba(0, 40, 70, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.bajo-info-gallery-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--sunset) / 0.34);
  box-shadow: 0 28px 64px -44px rgba(0, 40, 70, 0.62);
}
.bajo-info-gallery-card img {
  width: 100%;
  height: clamp(13rem, 22vw, 18rem);
  object-fit: cover;
  display: block;
}
.bajo-info-gallery-card div {
  padding: 1.25rem;
}
.bajo-info-gallery-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: var(--foreground);
}
.bajo-info-gallery-card p {
  color: var(--muted-foreground);
  line-height: 1.68;
}

.bajo-info-video {
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 82% 10%, hsl(var(--sunset) / 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(255,255,255,0.98), hsl(195, 34%, 96%));
  border: 1px solid hsl(var(--teal-mid) / 0.16);
  border-radius: 1.6rem;
  box-shadow: 0 24px 62px -48px rgba(0, 40, 70, 0.55);
}
.bajo-info-video-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .bajo-info-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bajo-info-video-grid.is-single { grid-template-columns: minmax(0, 1fr); }
}

.bajo-info-video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 18px 48px -40px rgba(0, 40, 70, 0.5);
}
.bajo-info-video-grid.is-single .bajo-info-video-card {
  max-width: 880px;
}
.bajo-info-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: hsl(var(--navy-dark));
}
.bajo-info-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.bajo-info-video-copy {
  padding: 1.25rem;
}
.bajo-info-video-copy h3 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
  font-size: 1.18rem;
}
.bajo-info-video-copy p {
  color: var(--muted-foreground);
  line-height: 1.68;
}

.bajo-info-compact {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
}
.bajo-info-video-card-featured {
  border-radius: 1.45rem;
  box-shadow: 0 28px 72px -48px rgba(0, 40, 70, 0.64);
}
.bajo-info-short-copy {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 0% 0%, hsl(var(--sunset) / 0.12), transparent 17rem),
    rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 1.45rem;
  box-shadow: 0 22px 58px -48px rgba(0, 40, 70, 0.55);
  text-align: center;
}
.bajo-info-short-copy h2 {
  max-width: 760px;
  margin: 0 auto;
}
.bajo-info-short-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.bajo-info-cta {
  isolation: isolate;
  max-width: 1180px;
  margin: 1.75rem auto 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: clamp(1.55rem, 4.5vw, 3.2rem);
  background:
    radial-gradient(circle at 9% 18%, hsl(var(--sunset) / 0.34), transparent 13rem),
    radial-gradient(circle at 92% 12%, hsl(var(--teal-light) / 0.26), transparent 16rem),
    linear-gradient(135deg, hsl(var(--navy-dark)) 0%, hsl(197 58% 18%) 58%, hsl(var(--teal-deep)) 100%);
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: 1.85rem;
  color: #fff;
  box-shadow: 0 32px 80px -48px rgba(0, 40, 70, 0.72);
}
.bajo-info-cta::before {
  content: '';
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, hsl(0 0% 100% / 0.08), transparent 38%, hsl(0 0% 100% / 0.08)),
    repeating-linear-gradient(135deg, hsl(0 0% 100% / 0.035) 0 1px, transparent 1px 14px);
  pointer-events: none;
}
.bajo-info-cta-mark {
  width: clamp(3.7rem, 7vw, 5.2rem);
  height: clamp(3.7rem, 7vw, 5.2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.35rem;
  background: hsl(var(--sunset));
  color: #fff;
  box-shadow: 0 18px 38px -22px hsl(var(--sunset) / 0.95);
}
.bajo-info-cta-mark svg {
  width: 52%;
  height: 52%;
}
.bajo-info-cta-copy {
  min-width: 0;
}
@media (min-width: 820px) {
  .bajo-info-cta {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.65rem;
    align-items: center;
  }
}
@media (max-width: 640px) {
  .bajo-info-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.bajo-info-cta span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: hsl(var(--sunset-light));
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bajo-info-cta h2 {
  color: #fff;
  max-width: 48rem;
  font-size: clamp(1.65rem, 3.3vw, 3.2rem);
  letter-spacing: -0.04em;
}
.bajo-info-cta p {
  max-width: 42rem;
  color: rgba(255,255,255,0.78);
}
.bajo-info-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.35rem 0.45rem 0.35rem 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: hsl(var(--navy-dark));
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 22px 42px -26px rgba(0, 0, 0, 0.65);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.bajo-info-cta-button span {
  margin: 0;
  color: inherit;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-transform: none;
}
.bajo-info-cta-button svg {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0.62rem;
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  transition: transform 0.22s ease;
}
.bajo-info-cta-button:hover {
  transform: translateY(-2px);
  background: hsl(35 100% 96%);
  box-shadow: 0 28px 52px -28px rgba(0, 0, 0, 0.75);
}
.bajo-info-cta-button:hover svg {
  transform: translateX(2px);
}

/* =============================================
   RZEKI
   ============================================= */
.river-page {
  background: #f4f8f7;
  color: var(--foreground);
}
.river-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: hsl(var(--navy-dark));
}
.river-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.river-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 14, 22, 0.34) 0%, rgba(2, 14, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 14, 22, 0.9) 0%, rgba(2, 14, 22, 0.58) 50%, rgba(2, 14, 22, 0.28) 100%);
  pointer-events: none;
}
.river-hero-shade {
  display: none;
}
.river-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 980px;
  padding-top: 160px;
  padding-bottom: 92px;
  text-align: center;
}
.river-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.48rem;
  max-width: 100%;
  margin-bottom: 1.35rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(3, 20, 30, 0.46);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}
.river-breadcrumb a,
.river-breadcrumb strong {
  color: #fff;
  text-decoration: none;
}
.river-breadcrumb a:hover {
  color: hsl(var(--sunset-light));
}
.river-breadcrumb span {
  color: rgba(255,255,255,0.58);
}
.river-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}
.river-hero p {
  max-width: 660px;
  margin-top: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.84);
  font-size: 1.17rem;
  line-height: 1.75;
}
.river-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}
.river-overview {
  padding: 0 0 84px;
  background: #f4f8f7;
}
.river-overview-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 56px;
  align-items: center;
  margin-top: -58px;
  padding: clamp(1.4rem, 4vw, 2.35rem);
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
@media (min-width: 960px) {
  .river-overview-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }
}
.river-lead {
  max-width: 600px;
}
.river-lead p {
  margin: 0;
  color: hsl(var(--navy));
  font-size: 1.45rem;
  font-weight: 780;
  line-height: 1.58;
}
.river-section-label {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: hsl(var(--sunset));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.river-photo {
  margin: 0;
}
.river-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 34px 74px -58px rgba(0, 40, 70, 0.82);
}
.river-photo figcaption {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.45;
}
.river-story {
  padding: 0 0 96px;
  background: #f4f8f7;
}
.river-story-layout {
  position: relative;
  display: grid;
  gap: clamp(1.3rem, 3vw, 2.2rem);
  align-items: stretch;
  padding: clamp(1.25rem, 4vw, 2.45rem);
  overflow: hidden;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    hsl(195 42% 98%);
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
.river-story-layout::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 4vw, 2.45rem);
  right: clamp(1.25rem, 4vw, 2.45rem);
  height: 3px;
  background: hsl(var(--sunset));
}
@media (min-width: 980px) {
  .river-story-layout {
    grid-template-columns: minmax(0, 1fr) 372px;
  }
}
.river-article {
  display: grid;
  gap: 1rem;
  max-width: 100%;
}
.river-text-block {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid hsl(var(--teal-mid) / 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 48px -46px rgba(0, 40, 70, 0.62);
}
.river-text-block:last-child {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid hsl(var(--teal-mid) / 0.11);
}
.river-text-block h2,
.river-section-head h2,
.river-note h2 {
  max-width: 720px;
  color: hsl(var(--navy-dark));
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}
.river-text-block p,
.river-note p {
  max-width: 760px;
  margin-top: 1.15rem;
  color: hsl(var(--navy) / 0.78);
  font-size: 1.04rem;
  line-height: 1.82;
}
.river-facts {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.2rem, 2.4vw, 1.55rem);
  border: 2px solid hsl(var(--sunset) / 0.68);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.9), rgba(255,255,255,0.98)),
    #fff;
  box-shadow: 0 28px 64px -50px rgba(255, 126, 26, 0.55);
}
.river-facts dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.river-facts div {
  padding: 1.05rem 0;
  border: 0;
  border-bottom: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 0;
  background: transparent;
}
.river-facts div:first-child {
  padding-top: 0;
}
.river-facts div:last-child {
  padding-bottom: 0;
  border: 0;
}
.river-facts dt {
  color: hsl(var(--sunset));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.river-facts dd {
  margin: 0.45rem 0 0;
  color: hsl(var(--navy-dark));
  font-size: 0.98rem;
  line-height: 1.56;
  font-weight: 740;
}
.river-facts-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.95rem 1rem;
  border: 0;
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 18px 34px -24px hsl(var(--sunset));
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.river-facts-link:hover {
  transform: translateY(-2px);
  background: hsl(var(--sunset-light));
  box-shadow: 0 22px 40px -24px hsl(var(--sunset));
}
.river-route-section {
  padding: 0 0 96px;
  background: #f4f8f7;
  color: hsl(var(--navy-dark));
}
.river-route-section > .container {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2.45rem);
  overflow: hidden;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    hsl(195 42% 98%);
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
.river-route-section > .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 4vw, 2.45rem);
  right: clamp(1.25rem, 4vw, 2.45rem);
  height: 3px;
  background: hsl(var(--sunset));
}
.river-route-section .river-section-label {
  color: hsl(var(--sunset));
}
.river-route-section .river-section-head h2 {
  color: hsl(var(--navy-dark));
}
.river-route-list {
  display: grid;
  gap: 0.8rem;
  max-width: none;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.river-route-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem 1.15rem;
  border: 1px solid hsl(var(--teal-mid) / 0.11);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px -40px rgba(0, 40, 70, 0.58);
}
.river-route-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}
.river-route-list li strong {
  color: hsl(var(--navy-dark));
  font-size: 1.05rem;
  line-height: 1.45;
}
.river-note-section {
  padding: 0 0 96px;
  background: #f4f8f7;
}
.river-note-section .container {
  position: relative;
  padding: clamp(1.25rem, 4vw, 2.45rem);
  overflow: hidden;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    hsl(195 42% 98%);
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
.river-note-section .container::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 4vw, 2.45rem);
  right: clamp(1.25rem, 4vw, 2.45rem);
  height: 3px;
  background: hsl(var(--sunset));
}
.river-note {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border: 1px solid hsl(var(--teal-mid) / 0.11);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 22px 52px -46px rgba(0, 40, 70, 0.62);
}
.river-note .river-section-label {
  justify-content: center;
}
.river-related {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 18%, hsl(var(--sunset) / 0.14), transparent 26rem),
    linear-gradient(180deg, hsl(var(--navy-dark)) 0%, hsl(205 52% 8%) 100%);
  color: #fff;
}
.river-related .river-section-label {
  color: hsl(var(--sunset-light));
}
.river-related .river-section-head h2 {
  color: #fff;
}
.river-section-head-split {
  display: grid;
  gap: 1.2rem;
  align-items: end;
}
@media (min-width: 860px) {
  .river-section-head-split {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  }
}
.river-section-head-split p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.7;
}
.river-related-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 34px;
}
@media (min-width: 760px) {
  .river-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.river-related-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
  min-height: 188px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.05);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.river-related-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: hsl(var(--sunset));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.river-related-index {
  color: hsl(var(--sunset-light));
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}
.river-related-region {
  color: hsl(var(--sunset));
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.river-related-card strong {
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.3;
}
.river-related-card em {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: end;
  color: rgba(255,255,255,0.72);
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 850;
}
.river-related-card em svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}
.river-related-card:hover {
  transform: translateY(-3px);
  border-color: hsl(var(--sunset) / 0.45);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06)),
    rgba(255,255,255,0.06);
  box-shadow: 0 22px 54px -40px rgba(0, 0, 0, 0.9);
}
.river-related-card:hover::before {
  opacity: 1;
}
.river-related-card:hover em svg {
  transform: translateX(3px);
}
.river-cta-section {
  padding: 92px 0;
  background: hsl(195 35% 96%);
}
.river-cta {
  margin-top: 0;
}

/* =============================================
   LOKALNE PODSTRONY SEO
   ============================================= */
.local-landing-page {
  background: hsl(195 35% 96%);
  color: var(--foreground);
}
.local-landing-hero {
  position: relative;
  isolation: isolate;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: hsl(var(--navy-dark));
  color: #fff;
}
.local-landing-hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-landing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 14, 22, 0.2) 0%, rgba(2, 14, 22, 0.76) 100%),
    linear-gradient(90deg, rgba(2, 14, 22, 0.92) 0%, rgba(2, 14, 22, 0.62) 46%, rgba(2, 14, 22, 0.26) 100%);
}
.local-landing-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1180px;
  padding-top: 150px;
  padding-bottom: 120px;
  text-align: left;
}
.local-landing-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.48rem;
  max-width: 100%;
  margin-bottom: 1.3rem;
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(3, 20, 30, 0.46);
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}
.local-landing-breadcrumb a,
.local-landing-breadcrumb strong {
  color: #fff;
  text-decoration: none;
}
.local-landing-breadcrumb span {
  color: rgba(255,255,255,0.58);
}
.local-landing-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}
.local-landing-hero p {
  max-width: 670px;
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.84);
  font-size: 1.16rem;
  line-height: 1.75;
}
.local-landing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
}
.local-landing-intro {
  padding: 0 0 78px;
  background: hsl(195 35% 96%);
}
.local-landing-intro-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  align-items: center;
  margin-top: -72px;
  padding: 0;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
@media (min-width: 960px) {
  .local-landing-intro-panel {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }
}
.local-landing-lead {
  padding: clamp(1.55rem, 5vw, 3.35rem);
}
.local-landing-lead h2 {
  max-width: 650px;
  color: hsl(var(--navy-dark));
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.local-landing-lead p {
  max-width: 700px;
  margin-top: 1.15rem;
  color: hsl(var(--navy) / 0.78);
  font-size: 1.08rem;
  line-height: 1.82;
}
.local-landing-photo {
  height: 100%;
  margin: 0;
}
.local-landing-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}
.local-landing-features,
.local-landing-details,
.local-landing-lists,
.local-landing-cta-section {
  background: hsl(195 35% 96%);
}
.local-landing-features {
  padding: 0 0 78px;
}
.local-landing-feature-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px -58px rgba(0, 40, 70, 0.76);
}
@media (min-width: 820px) {
  .local-landing-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.local-landing-feature,
.local-landing-list-card {
  position: relative;
  padding: clamp(1.3rem, 3vw, 2rem);
  background: #fff;
}
.local-landing-feature + .local-landing-feature {
  border-top: 1px solid hsl(var(--teal-mid) / 0.1);
}
@media (min-width: 820px) {
  .local-landing-feature + .local-landing-feature {
    border-top: 0;
    border-left: 1px solid hsl(var(--teal-mid) / 0.1);
  }
}
.local-landing-feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 900;
}
.local-landing-feature h3,
.local-landing-list-card h2,
.local-landing-copy h2,
.local-landing-reserve h3,
.local-landing-cta h2 {
  color: hsl(var(--navy-dark));
  letter-spacing: 0;
}
.local-landing-feature h3 {
  font-size: 1.38rem;
  line-height: 1.16;
}
.local-landing-feature p {
  margin-top: 0.85rem;
  color: hsl(var(--navy) / 0.76);
  line-height: 1.72;
}
.local-landing-details {
  padding: 0 0 78px;
}
.local-landing-details-panel,
.local-landing-lists-grid,
.local-landing-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    hsl(195 42% 98%);
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
.local-landing-details-panel {
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
  align-items: stretch;
  padding: clamp(1.35rem, 4vw, 2.75rem);
}
.local-landing-details-panel::before,
.local-landing-lists-grid::before,
.local-landing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 4vw, 2.45rem);
  right: clamp(1.25rem, 4vw, 2.45rem);
  height: 3px;
  background: hsl(var(--sunset));
}
@media (min-width: 940px) {
  .local-landing-details-panel {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}
.local-landing-copy,
.local-landing-reserve {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 8px;
}
.local-landing-copy {
  border: 0;
  background: transparent;
}
.local-landing-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.08;
}
.local-landing-copy p,
.local-landing-reserve p,
.local-landing-cta p {
  margin-top: 1rem;
  color: hsl(var(--navy) / 0.78);
  font-size: 1.04rem;
  line-height: 1.82;
}
.local-landing-reserve {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid hsl(var(--sunset) / 0.38);
  background:
    linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(255,255,255,0.98)),
    #fff;
  box-shadow: 0 22px 54px -48px hsl(var(--sunset) / 0.7);
}
.local-landing-reserve h3 {
  font-size: 1.55rem;
}
.local-landing-reserve .btn-sunset {
  margin-top: 1.2rem;
}
.local-landing-lists {
  padding: 0 0 78px;
}
.local-landing-offer-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 3rem);
  border: 1px solid hsl(var(--teal-mid) / 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99) 0%, rgba(248,252,251,0.98) 62%, rgba(255,249,242,0.82) 100%),
    #fff;
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
.local-landing-offer-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 4vw, 2.65rem);
  right: clamp(1.25rem, 4vw, 2.65rem);
  height: 3px;
  background: hsl(var(--sunset));
}
.local-landing-offer-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.35rem, 3vw, 2.1rem);
}
@media (min-width: 940px) {
  .local-landing-offer-head {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }
  .local-landing-offer-head p {
    grid-column: 2;
  }
}
.local-landing-offer-head h2 {
  color: hsl(var(--navy-dark));
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.local-landing-offer-head p {
  max-width: 830px;
  margin-top: 1rem;
  color: hsl(var(--navy) / 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}
.local-landing-offer-summary {
  display: grid;
  gap: 1rem;
}
@media (min-width: 860px) {
  .local-landing-offer-summary {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}
.local-landing-setup-card {
  min-height: 100%;
  padding: clamp(1.15rem, 3vw, 1.75rem);
  border: 1px solid hsl(var(--teal-mid) / 0.14);
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 20px 50px -46px rgba(0, 40, 70, 0.68);
}
.local-landing-setup-card-accent {
  border-color: hsl(var(--sunset) / 0.42);
}
.local-landing-setup-card > span {
  display: block;
  color: hsl(var(--sunset));
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.local-landing-setup-card h3 {
  margin-top: 0.55rem;
  color: hsl(var(--navy-dark));
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}
.local-landing-setup-card ul {
  display: grid;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 620px) {
  .local-landing-setup-card ul {
    grid-template-columns: none;
  }
}
.local-landing-setup-card li {
  position: relative;
  padding: 0.78rem 0 0.78rem 1.7rem;
  border-top: 1px solid hsl(var(--teal-mid) / 0.1);
  color: hsl(var(--navy-dark));
  font-weight: 760;
  line-height: 1.38;
}
.local-landing-setup-card li::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  top: 1.16rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(var(--sunset));
  box-shadow: 0 0 0 4px hsl(var(--sunset) / 0.12);
}
.local-landing-service-band {
  margin-top: 1rem;
  padding: clamp(1.15rem, 3vw, 1.9rem);
  border: 1px solid hsl(var(--teal-mid) / 0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 20px 56px -50px rgba(0, 40, 70, 0.7);
}
.local-landing-service-heading {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.05rem;
}
@media (min-width: 900px) {
  .local-landing-service-heading {
    grid-template-columns: minmax(210px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }
  .local-landing-service-heading p {
    grid-column: 2;
  }
}
.local-landing-service-heading h3 {
  color: hsl(var(--navy-dark));
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.local-landing-service-heading p {
  max-width: 760px;
  margin-top: 0.7rem;
  color: hsl(var(--navy) / 0.72);
  line-height: 1.72;
}
.local-landing-service-grid {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 720px) {
  .local-landing-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1180px) {
  .local-landing-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.local-landing-service {
  display: flex;
  flex-direction: column;
  min-height: 198px;
  padding: 1.05rem;
  border: 1px solid hsl(var(--teal-mid) / 0.13);
  border-radius: 8px;
  background: #fff;
  color: hsl(var(--navy-dark));
  text-decoration: none;
  box-shadow: 0 16px 42px -40px rgba(0, 40, 70, 0.62);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.local-landing-service.is-featured {
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.96), rgba(255,255,255,0.98)),
    #fff;
  border-color: hsl(var(--sunset) / 0.36);
}
@media (min-width: 1180px) {
  .local-landing-service.is-featured {
    grid-column: span 2;
  }
}
.local-landing-service:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--sunset) / 0.58);
  box-shadow: 0 24px 58px -44px rgba(0, 40, 70, 0.78);
}
.local-landing-service span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: hsl(var(--sunset));
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}
.local-landing-service strong {
  display: block;
  color: hsl(var(--navy-dark));
  font-family: var(--font-display);
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: 0;
}
.local-landing-service p {
  margin: 0.65rem 0 0;
  color: hsl(var(--navy) / 0.72);
  font-size: 0.92rem;
  line-height: 1.58;
}
.local-landing-service em {
  margin-top: auto;
  padding-top: 1rem;
  color: hsl(var(--sunset));
  font-style: normal;
  font-weight: 900;
}
.local-landing-cta-section {
  padding: 0 0 96px;
}
.local-landing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.6rem);
  text-align: center;
}
.local-landing-cta > span {
  color: hsl(var(--sunset));
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-landing-cta h2 {
  max-width: 760px;
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}
.local-landing-cta p {
  max-width: 660px;
}
.local-landing-cta .btn-sunset {
  min-width: 220px;
  margin-top: 1.3rem;
}
.local-landing-cta .btn-sunset span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

/* Editorial layout for local SEO landing pages */
.local-landing-intro-editorial {
  position: relative;
  z-index: 2;
  display: grid;
  overflow: hidden;
  margin-top: -74px;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 78px -62px rgba(0, 40, 70, 0.78);
}
@media (min-width: 980px) {
  .local-landing-intro-editorial {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  }
}
.local-landing-intro-editorial .local-landing-photo {
  min-height: 100%;
}
.local-landing-intro-editorial .local-landing-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}
.local-landing-intro-editorial .local-landing-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.8rem, 5vw, 4rem);
}
.local-landing-points {
  display: grid;
  border-top: 1px solid hsl(var(--teal-mid) / 0.1);
  background: hsl(195 42% 98%);
}
@media (min-width: 820px) {
  .local-landing-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.local-landing-points article {
  padding: clamp(1.2rem, 3vw, 1.8rem);
}
.local-landing-points article + article {
  border-top: 1px solid hsl(var(--teal-mid) / 0.1);
}
@media (min-width: 820px) {
  .local-landing-points article + article {
    border-top: 0;
    border-left: 1px solid hsl(var(--teal-mid) / 0.1);
  }
}
.local-landing-points span {
  display: block;
  margin-bottom: 0.7rem;
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
}
.local-landing-points h3 {
  color: hsl(var(--navy-dark));
  font-size: 1.28rem;
  line-height: 1.16;
  letter-spacing: 0;
}
.local-landing-points p {
  margin-top: 0.75rem;
  color: hsl(var(--navy) / 0.72);
  line-height: 1.65;
}
.local-landing-details-editorial {
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 940px) {
  .local-landing-details-editorial {
    grid-template-columns: minmax(0, 1fr) 390px;
  }
}
.local-landing-details-editorial .local-landing-copy {
  padding: 0;
}
.local-landing-details-editorial .local-landing-copy p {
  max-width: 760px;
}
.local-landing-details-editorial .local-landing-reserve {
  position: sticky;
  top: 110px;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid hsl(var(--sunset) / 0.35);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 62px -52px rgba(0, 40, 70, 0.78);
}
.local-landing-details-editorial .local-landing-reserve > span {
  color: hsl(var(--sunset));
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-landing-details-editorial .local-landing-reserve h3 {
  margin-top: 0.65rem;
}
.local-landing-offer-editorial {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid hsl(var(--teal-mid) / 0.14);
}
@media (min-width: 980px) {
  .local-landing-offer-head {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 1rem 2.5rem;
    align-items: start;
  }
  .local-landing-offer-head p {
    grid-column: 2;
  }
}
.local-landing-offer-head h2 {
  color: hsl(var(--navy-dark));
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  letter-spacing: 0;
}
.local-landing-offer-head p {
  max-width: 820px;
  color: hsl(var(--navy) / 0.76);
  font-size: 1.06rem;
  line-height: 1.82;
}
.local-landing-offer-columns {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
}
@media (min-width: 860px) {
  .local-landing-offer-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
.local-landing-offer-list {
  padding: clamp(1.25rem, 3vw, 1.75rem) 0;
  border-top: 1px solid hsl(var(--teal-mid) / 0.14);
  border-bottom: 1px solid hsl(var(--teal-mid) / 0.14);
}
.local-landing-offer-list > span {
  display: block;
  color: hsl(var(--sunset));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-landing-offer-list ul {
  display: grid;
  gap: 0;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}
.local-landing-offer-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.45rem;
  border-top: 1px solid hsl(var(--teal-mid) / 0.09);
  color: hsl(var(--navy-dark));
  font-weight: 760;
  line-height: 1.42;
}
.local-landing-offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: hsl(var(--sunset));
}
.local-landing-addon-block {
  display: grid;
  gap: 1.35rem;
}
@media (min-width: 980px) {
  .local-landing-addon-block {
    grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
    align-items: start;
  }
}
.local-landing-addon-heading h2 {
  margin-top: 0.75rem;
  color: hsl(var(--navy-dark));
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.local-landing-addon-list {
  border-top: 1px solid hsl(var(--teal-mid) / 0.14);
}
.local-landing-addon-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.18rem 0;
  border-bottom: 1px solid hsl(var(--teal-mid) / 0.14);
  color: hsl(var(--navy-dark));
  text-decoration: none;
}
@media (min-width: 720px) {
  .local-landing-addon-row {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
  }
}
.local-landing-addon-number {
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 900;
}
.local-landing-addon-body > span {
  display: block;
  margin-bottom: 0.35rem;
  color: hsl(var(--sunset));
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-landing-addon-body strong {
  display: block;
  color: hsl(var(--navy-dark));
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: 0;
}
.local-landing-addon-body p {
  max-width: 650px;
  margin: 0.55rem 0 0;
  color: hsl(var(--navy) / 0.72);
  line-height: 1.6;
}
.local-landing-addon-row em {
  align-self: end;
  color: hsl(var(--sunset));
  font-style: normal;
  font-weight: 900;
}
.local-landing-addon-row:hover .local-landing-addon-body strong,
.local-landing-addon-row:hover em {
  color: hsl(var(--sunset));
}
.local-landing-final {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.7rem, 4vw, 2.8rem) 0;
  border-top: 1px solid hsl(var(--teal-mid) / 0.14);
  border-bottom: 1px solid hsl(var(--teal-mid) / 0.14);
}
@media (min-width: 860px) {
  .local-landing-final {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.75fr);
  }
}
.local-landing-final h2 {
  margin-top: 0.65rem;
  color: hsl(var(--navy-dark));
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}
.local-landing-final p {
  color: hsl(var(--navy) / 0.76);
  font-size: 1.06rem;
  line-height: 1.78;
}
.local-landing-final .btn-sunset {
  margin-top: 1.25rem;
}

.local-landing-hero-content {
  align-items: center;
  text-align: center;
}
.local-landing-actions {
  justify-content: center;
}
.local-landing-hero h1 {
  max-width: 1050px;
}
.local-landing-hero p {
  max-width: 780px;
}
.local-landing-intro-editorial {
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2.4vw, 1.8rem);
  overflow: visible;
  background: #fff;
}
.local-landing-intro-editorial .local-landing-photo img {
  min-height: 440px;
  border-radius: 8px;
}
.local-landing-intro-editorial .local-landing-lead {
  padding: clamp(2.4rem, 6vw, 4.6rem) clamp(1.5rem, 5vw, 3.4rem);
}
.local-landing-points {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: 0;
  border: 1px solid hsl(var(--teal-mid) / 0.1);
  border-radius: 8px;
  background: hsl(195 42% 98%);
}
.local-landing-points article {
  padding: clamp(1.45rem, 3vw, 2.15rem);
}
.local-landing-details {
  padding: 0 0 86px;
}
.local-landing-details-editorial {
  position: relative;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 76px -62px rgba(0, 40, 70, 0.74);
}
@media (min-width: 940px) {
  .local-landing-details-editorial {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.48fr);
  }
}
.local-landing-details-editorial .local-landing-copy h2 {
  max-width: 760px;
}
.local-landing-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}
@media (min-width: 760px) {
  .local-landing-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.local-landing-steps article {
  padding: 1.05rem;
  border: 1px solid hsl(var(--teal-mid) / 0.1);
  border-radius: 8px;
  background: hsl(195 42% 98%);
}
.local-landing-steps span {
  display: block;
  margin-bottom: 0.65rem;
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 900;
}
.local-landing-steps strong {
  display: block;
  color: hsl(var(--navy-dark));
  line-height: 1.25;
}
.local-landing-steps p {
  margin-top: 0.55rem;
  color: hsl(var(--navy) / 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}
.local-landing-details-editorial .local-landing-reserve {
  position: relative;
  top: auto;
  align-self: stretch;
  justify-content: center;
  border-color: hsl(var(--sunset) / 0.42);
  background:
    linear-gradient(180deg, rgba(255,249,242,0.94), rgba(255,255,255,0.98)),
    #fff;
}
.local-landing-details-editorial .local-landing-reserve .btn-sunset {
  width: 100%;
}
.local-landing-offer-editorial {
  gap: clamp(1.6rem, 4vw, 2.7rem);
  padding-top: 0;
  border-top: 0;
}
.local-landing-offer-head {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.local-landing-offer-head p {
  margin: 1rem auto 0;
}
.local-landing-prep-panel {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px -60px rgba(0, 40, 70, 0.72);
}
@media (min-width: 880px) {
  .local-landing-prep-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
  }
}
.local-landing-prep-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.local-landing-prep-panel li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.35rem;
  border: 1px solid hsl(var(--teal-mid) / 0.1);
  border-radius: 8px;
  background: hsl(195 42% 98%);
  color: hsl(var(--navy-dark));
  font-weight: 820;
  line-height: 1.38;
}
.local-landing-prep-panel li::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--sunset));
}
.local-landing-prep-panel p {
  margin: 0;
  color: hsl(var(--navy) / 0.76);
  font-size: 1.04rem;
  line-height: 1.78;
}
.local-landing-addon-block {
  display: block;
}
.local-landing-addon-heading {
  max-width: 760px;
  margin: 0 auto 1.25rem;
  text-align: center;
}
.local-landing-addon-heading h2 {
  color: hsl(var(--navy-dark));
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.local-landing-addon-cards {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 740px) {
  .local-landing-addon-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1160px) {
  .local-landing-addon-cards {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.local-landing-addon-card {
  display: flex;
  min-height: 230px;
  padding: 1.15rem;
  flex-direction: column;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  color: hsl(var(--navy-dark));
  text-decoration: none;
  box-shadow: 0 20px 52px -46px rgba(0, 40, 70, 0.62);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.local-landing-addon-card:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--sunset) / 0.52);
  box-shadow: 0 26px 62px -48px rgba(0, 40, 70, 0.78);
}
.local-landing-addon-card > span {
  color: hsl(var(--sunset));
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.local-landing-addon-card strong {
  margin-top: 0.75rem;
  color: hsl(var(--navy-dark));
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.16;
  letter-spacing: 0;
}
.local-landing-addon-card p {
  margin: 0.65rem 0 0;
  color: hsl(var(--navy) / 0.72);
  font-size: 0.94rem;
  line-height: 1.58;
}
.local-landing-addon-card em {
  margin-top: auto;
  padding-top: 1rem;
  color: hsl(var(--sunset));
  font-style: normal;
  font-weight: 900;
}
.local-landing-final {
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.4rem);
  flex-direction: column;
  align-items: center;
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 76px -62px rgba(0, 40, 70, 0.74);
}
.local-landing-final h2 {
  max-width: 720px;
}
.local-landing-final p {
  max-width: 650px;
  margin: 1rem auto 0;
}
.local-landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
}
.local-landing-final-actions .btn-sunset {
  margin-top: 0;
}
.local-landing-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border: 1px solid hsl(var(--teal-mid) / 0.16);
  border-radius: 999px;
  color: hsl(var(--navy-dark));
  font-weight: 850;
  text-decoration: none;
}
.local-landing-gallery {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: clamp(2.2rem, 5vw, 4rem) auto 0;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  border: 1px solid hsl(var(--teal-mid) / 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 76px -62px rgba(0, 40, 70, 0.78);
}
.local-landing-gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.2rem, 4vw, 2.4rem);
  right: clamp(1.2rem, 4vw, 2.4rem);
  height: 3px;
  background: hsl(var(--sunset));
}
.local-landing-gallery-head {
  max-width: 760px;
  margin: 0 auto clamp(1.4rem, 3vw, 2rem);
  text-align: center;
}
.local-landing-gallery-head h2 {
  margin-top: 0.65rem;
  color: hsl(var(--navy-dark));
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0;
}
.local-landing-gallery-head p {
  margin: 0.9rem auto 0;
  color: hsl(var(--navy) / 0.72);
  line-height: 1.72;
}
.local-landing-gallery-stage {
  display: grid;
  grid-template-columns: 46px minmax(110px, 0.36fr) minmax(0, 1fr) minmax(110px, 0.36fr) 46px;
  gap: clamp(0.5rem, 2vw, 1rem);
  align-items: center;
}
.local-landing-gallery-main,
.local-landing-gallery-side,
.local-landing-gallery-arrow,
.local-landing-gallery-thumb-arrow,
.local-landing-gallery-thumbs button,
.local-landing-lightbox-close,
.local-landing-lightbox-arrow {
  border: 0;
  font: inherit;
  cursor: pointer;
}
.local-landing-gallery-main,
.local-landing-gallery-side {
  display: block;
  overflow: hidden;
  padding: 0;
  border-radius: 8px;
  background: hsl(var(--navy-dark));
}
.local-landing-gallery-main {
  aspect-ratio: 16 / 9;
  box-shadow: 0 30px 72px -52px rgba(0, 40, 70, 0.82);
}
.local-landing-gallery-side {
  aspect-ratio: 4 / 3;
  opacity: 0.74;
  transform: scale(0.92);
}
.local-landing-gallery-main img,
.local-landing-gallery-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.local-landing-gallery.is-animating .local-landing-gallery-main img,
.local-landing-gallery.is-animating .local-landing-gallery-side img {
  animation: localGalleryFade 0.46s ease both;
}
@keyframes localGalleryFade {
  from {
    opacity: 0.45;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.local-landing-gallery-arrow,
.local-landing-gallery-thumb-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid hsl(var(--sunset) / 0.24);
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 0;
  box-shadow: 0 14px 32px -22px hsl(var(--sunset) / 0.9);
}
.local-landing-gallery-thumbs-wrap {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}
.local-landing-gallery-thumb-arrow {
  width: 40px;
  height: 40px;
  font-size: 1.65rem;
  background: #fff;
  color: hsl(var(--sunset));
}
.local-landing-gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  scroll-behavior: smooth;
}
.local-landing-gallery-thumbs button {
  flex: 0 0 92px;
  height: 64px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  opacity: 0.64;
}
.local-landing-gallery-thumbs button.active {
  border-color: hsl(var(--sunset));
  opacity: 1;
}
.local-landing-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.gallery-open {
  overflow: hidden;
}
.local-landing-lightbox[hidden] {
  display: none !important;
}
.local-landing-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  width: 100vw;
  height: 100vh;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(5.5rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem) clamp(1rem, 4vw, 3rem);
  background: rgba(2, 14, 22, 0.92);
  box-sizing: border-box;
}
.local-landing-lightbox img {
  display: block;
  max-width: min(1180px, 88vw);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
}
.local-landing-lightbox img.is-changing {
  animation: localLightboxFade 0.32s ease both;
}
@keyframes localLightboxFade {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.local-landing-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #fff;
  color: hsl(var(--navy-dark));
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 0;
}
.local-landing-lightbox-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 0;
}
.local-landing-lightbox-arrow.prev {
  left: 24px;
}
.local-landing-lightbox-arrow.next {
  right: 24px;
}
.local-landing-addon-block {
  margin-top: clamp(2.1rem, 5vw, 4rem);
}
.local-landing-addon-heading {
  max-width: 780px;
}
.local-landing-addon-cards {
  max-width: 1320px;
  margin: 0 auto;
}
.local-landing-addon-card {
  position: relative;
  min-height: 250px;
  padding: 1.25rem;
  overflow: hidden;
  border-color: hsl(var(--teal-mid) / 0.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,252,251,0.98)),
    #fff;
}
.local-landing-addon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  background: hsl(var(--sunset));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.local-landing-addon-card:hover::before {
  transform: scaleX(1);
}
.local-landing-addon-card strong {
  font-size: 1.22rem;
}
.local-landing-addon-card em {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.local-landing-addon-card em::after {
  content: '→';
  transition: transform 0.25s ease;
}
.local-landing-addon-card:hover em::after {
  transform: translateX(4px);
}
.local-landing-final {
  position: relative;
  overflow: hidden;
  max-width: 1080px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,249,242,0.88)),
    #fff;
}
.local-landing-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: clamp(1.4rem, 4vw, 3rem);
  right: clamp(1.4rem, 4vw, 3rem);
  height: 3px;
  background: hsl(var(--sunset));
}

@media (max-width: 900px) {
  .local-landing-hero {
    min-height: 620px;
  }
  .local-landing-hero-content {
    align-items: center;
    padding-top: 132px;
    padding-bottom: 96px;
    text-align: center;
  }
  .local-landing-actions {
    justify-content: center;
  }
  .local-landing-intro-panel {
    margin-top: -52px;
  }
  .local-landing-photo img {
    min-height: 280px;
    border-radius: 0 0 8px 8px;
  }
  .local-landing-offer-head,
  .local-landing-service-heading {
    text-align: left;
  }
  .local-landing-intro-editorial {
    margin-top: -50px;
  }
  .local-landing-intro-editorial .local-landing-photo img {
    min-height: 290px;
  }
  .local-landing-details-editorial .local-landing-reserve {
    position: relative;
    top: auto;
  }
  .local-landing-gallery-stage {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
  }
  .local-landing-gallery-side {
    display: none;
  }
  .local-landing-gallery-main {
    grid-column: 2;
  }
  .local-landing-gallery-stage .local-landing-gallery-arrow:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .local-landing-gallery-stage .local-landing-gallery-arrow:last-child {
    grid-column: 3;
    grid-row: 1;
  }
  .local-landing-lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.9rem;
  }
  .local-landing-lightbox-arrow.prev {
    left: 12px;
  }
  .local-landing-lightbox-arrow.next {
    right: 12px;
  }
}

@media (max-width: 900px) {
  .river-hero {
    min-height: 560px;
  }
  .river-hero::before {
    background:
      linear-gradient(180deg, rgba(2, 14, 22, 0.24) 0%, rgba(2, 14, 22, 0.9) 100%),
      linear-gradient(90deg, rgba(2, 14, 22, 0.76), rgba(2, 14, 22, 0.32));
  }
  .river-hero h1 {
    font-size: 3.35rem;
  }
  .river-hero-content {
    padding-top: 128px;
    padding-bottom: 70px;
  }
  .river-overview,
  .river-story,
  .river-route-section,
  .river-note-section,
  .river-related {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .river-overview {
    padding-top: 0;
  }
  .river-story {
    padding-top: 0;
  }
  .river-route-section {
    padding-top: 0;
  }
  .river-facts {
    position: static;
  }
}
@media (max-width: 620px) {
  .river-hero h1 {
    font-size: 2.55rem;
  }
  .river-hero p,
  .river-text-block p,
  .river-note p {
    font-size: 1rem;
  }
  .river-lead p {
    font-size: 1.18rem;
  }
  .river-text-block h2,
  .river-section-head h2,
  .river-note h2 {
    font-size: 2rem;
  }
  .river-route-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
    padding: 1rem;
  }
  .river-note {
    padding: 28px;
  }
}

/* =============================================
   SZKOLENIA / GRA TERENOWA / ROWERY
   ============================================= */
.training-page,
.field-game-page,
.bike-rental-page {
  background:
    radial-gradient(circle at 12% 12%, hsl(var(--sunset) / 0.1), transparent 25rem),
    linear-gradient(180deg, var(--background) 0%, hsl(195, 35%, 95%) 100%);
}
.training-list-section,
.field-game-main,
.bike-rental-section {
  padding: 5.5rem 0 5.5rem;
}
@media (max-width: 760px) {
  .training-list-section,
  .field-game-main,
  .bike-rental-section {
    padding-top: 3.75rem;
  }
}
.training-list {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}
.training-card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.45rem);
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border);
  border-radius: 1.65rem;
  box-shadow: 0 24px 62px -48px rgba(0, 40, 70, 0.62);
}
@media (min-width: 920px) {
  .training-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
  }
  .training-card.reverse .training-media {
    order: 2;
  }
}
.training-media {
  position: relative;
}
.training-media img {
  display: block;
  width: 100%;
  min-height: clamp(16rem, 30vw, 24rem);
  object-fit: cover;
  border-radius: 1.35rem;
  box-shadow: 0 28px 66px -48px rgba(0, 40, 70, 0.68);
}
.training-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin: 0 0 0.8rem;
}
.training-meta span,
.training-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}
.training-meta span {
  background: hsl(var(--sunset));
  color: #fff;
}
.training-meta strong {
  background: hsl(var(--teal-mid) / 0.1);
  color: hsl(var(--teal-deep));
}
.training-copy h2 {
  color: var(--foreground);
  font-size: clamp(1.65rem, 3.5vw, 2.7rem);
  letter-spacing: -0.04em;
}
.training-copy p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 1.02rem;
  line-height: 1.78;
}
.training-cta,
.field-game-cta,
.bike-rental-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 36px -24px hsl(var(--sunset));
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
.training-cta:hover,
.field-game-cta:hover,
.bike-rental-cta:hover {
  opacity: 0.94;
  transform: translateY(-2px);
  box-shadow: 0 24px 44px -25px hsl(var(--sunset));
}
.training-archive {
  margin-top: 3rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--border);
  border-radius: 1.55rem;
  background: rgba(255,255,255,0.75);
}
.training-archive-head h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.training-archive-list {
  display: grid;
  gap: 0.85rem;
}
.training-archive-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border: 1px solid #d8e0e7;
  border-radius: 1rem;
  background: #eef2f5;
  color: #667482;
  filter: grayscale(0.85);
}
.training-archive-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: #8794a1;
  font-weight: 850;
}
.training-archive-card h3 {
  color: #4b5563;
  font-size: 1rem;
}
.training-archive-card strong {
  color: #64748b;
  font-size: 0.85rem;
  text-align: right;
}
.field-game-top-video,
.bike-rental-video {
  position: relative;
  max-width: 980px;
  margin: 0 auto 2rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.55rem;
  background: hsl(var(--navy-dark));
  box-shadow: 0 32px 80px -52px rgba(0, 40, 70, 0.7);
}
.field-game-top-video iframe,
.bike-rental-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.field-game-head {
  margin-top: 2.2rem;
}
.field-game-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .field-game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.field-game-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: 0 22px 58px -46px rgba(0, 40, 70, 0.58);
  transition: transform 0.24s ease, border-color 0.24s ease;
}
.field-game-card:hover {
  transform: translateY(-5px);
  border-color: hsl(var(--sunset) / 0.36);
}
.field-game-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: hsl(var(--navy-dark));
}
.field-game-media img,
.field-game-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.field-game-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem;
}
.field-game-copy h2 {
  color: var(--foreground);
  font-size: 1.35rem;
}
.field-game-copy p {
  flex: 1;
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.bike-rental-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: 1.55rem;
  background:
    radial-gradient(circle at 100% 0%, hsl(var(--sunset) / 0.1), transparent 18rem),
    rgba(255,255,255,0.95);
  box-shadow: 0 24px 62px -48px rgba(0, 40, 70, 0.58);
}
.bike-rental-copy h2 {
  color: var(--foreground);
  font-size: clamp(2rem, 5vw, 3.4rem);
}
.bike-rental-copy p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  line-height: 1.82;
}

/* =============================================
   404
   ============================================= */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--navy-dark)) 0%, hsl(var(--navy)) 100%);
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.notfound h1 {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: hsl(var(--sunset));
  margin-bottom: 0.5rem;
}
.notfound h2 {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1rem;
}
.notfound p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}

/* =============================================
   REGULAMIN
   ============================================= */
.regulamin-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background:
    radial-gradient(circle at 8% 8%, hsl(var(--sunset) / 0.08), transparent 28rem),
    radial-gradient(circle at 88% 18%, hsl(var(--teal-mid) / 0.12), transparent 32rem),
    linear-gradient(180deg, var(--background) 0%, hsl(195, 35%, 95%) 100%);
}
@media (min-width: 1024px) { .regulamin-section { padding: 7rem 0; } }

.regulamin-section > .container {
  position: relative;
  z-index: 1;
}

.regulamin-section .section-head {
  margin-bottom: 1.25rem;
}

.regulamin-section .section-head p {
  max-width: 48rem;
}

.regulamin-intro {
  max-width: 54rem;
  margin: 0 auto 2.75rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.regulamin-highlights {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}

.regulamin-highlight-card {
  position: relative;
  overflow: hidden;
  min-height: 13.5rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, hsl(195, 30%, 98%) 100%);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  box-shadow: 0 18px 42px -34px rgba(0, 40, 70, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.regulamin-highlight-card::after {
  content: '';
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.1);
}

.regulamin-highlight-card:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--sunset) / 0.35);
  box-shadow: 0 24px 52px -34px rgba(0, 40, 70, 0.5);
}

.regulamin-highlight-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  border-radius: 0.9rem;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 700;
}

.regulamin-highlight-card h3 {
  margin-bottom: 0.65rem;
  color: var(--foreground);
  font-size: 1.15rem;
}

.regulamin-highlight-card p {
  position: relative;
  z-index: 1;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.regulamin-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1080px) {
  .regulamin-layout {
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 2rem;
  }
}

.regulamin-main {
  display: grid;
  gap: 1.25rem;
}

.regulamin-rule-section {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  box-shadow: 0 18px 46px -38px rgba(0, 40, 70, 0.45);
}

.regulamin-rule-section::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, hsl(var(--sunset)), hsl(var(--teal-mid)));
}

.regulamin-rule-section header {
  margin-bottom: 1.35rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid hsl(var(--teal-mid) / 0.14);
}

.regulamin-kicker {
  display: inline-flex;
  margin-bottom: 0.65rem;
  color: hsl(var(--sunset));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regulamin-rule-section h3 {
  margin-bottom: 0.5rem;
  color: var(--foreground);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.regulamin-rule-section header p {
  max-width: 48rem;
  color: var(--muted-foreground);
}

.regulamin-rule-list {
  display: grid;
  gap: 0.95rem;
  list-style: none;
  counter-reset: regulamin-item;
}

.regulamin-rule-list li {
  position: relative;
  min-height: 2.3rem;
  padding-left: 3.15rem;
  color: hsl(205, 28%, 24%);
  line-height: 1.75;
  counter-increment: regulamin-item;
}

.regulamin-rule-list li::before {
  content: counter(regulamin-item);
  position: absolute;
  left: 0;
  top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: hsl(var(--sunset) / 0.1);
  border: 1px solid hsl(var(--sunset) / 0.22);
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.regulamin-aside {
  display: grid;
  gap: 1rem;
}

@media (min-width: 1080px) {
  .regulamin-aside {
    position: sticky;
    top: 6.5rem;
  }
}

.regulamin-note {
  padding: 1.45rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  box-shadow: 0 18px 42px -36px rgba(0, 40, 70, 0.42);
}

.regulamin-note h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.regulamin-note p,
.regulamin-note li,
.regulamin-note dd {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.regulamin-note ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.regulamin-note li {
  position: relative;
  padding-left: 1.15rem;
}

.regulamin-note li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: hsl(var(--sunset));
}

.regulamin-note dl {
  display: grid;
  gap: 0.65rem;
}

.regulamin-note dl div {
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
}

.regulamin-note dl div:first-child {
  border-top: 0;
  padding-top: 0;
}

.regulamin-note dt {
  color: var(--foreground);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.regulamin-note dd {
  margin-top: 0.2rem;
  font-weight: 600;
}

.regulamin-note-accent {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, hsl(var(--sunset) / 0.24), transparent 9rem),
    linear-gradient(135deg, hsl(var(--navy-dark)) 0%, hsl(var(--teal-deep)) 100%);
  border-color: transparent;
  color: #fff;
}

.regulamin-note-accent h3 {
  color: #fff;
}

.regulamin-note-accent p {
  color: rgba(255, 255, 255, 0.72);
}

.regulamin-note-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: hsl(var(--sunset-light));
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.regulamin-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.1rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: hsl(var(--sunset));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 28px -18px hsl(var(--sunset));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.regulamin-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -18px hsl(var(--sunset));
}

.regulamin-signoff {
  max-width: 1180px;
  margin: 4rem auto 0;
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, hsl(var(--sunset) / 0.55), hsl(var(--teal-mid) / 0.38)) border-box;
  border: 1px solid transparent;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 24px 60px -44px rgba(0, 40, 70, 0.55);
}
.regulamin-signoff .author {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--teal-deep));
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
}
.regulamin-signoff p {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  line-height: 1.75;
}
.regulamin-signoff .lbl {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--sunset));
  font-weight: 600;
}
.regulamin-signoff .meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}
.regulamin-signoff .meta a { color: hsl(var(--teal-deep)); font-weight: 600; }
.regulamin-signoff .meta a:hover { color: hsl(var(--sunset)); }

/* =============================================
   O NAS
   ============================================= */
.about-hero-row {
  padding: 5rem 0 3rem;
}
@media (min-width: 1024px) { .about-hero-row { padding: 7rem 0 4rem; } }

.about-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; }
}

.about-portrait {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: hsl(var(--teal-deep));
  box-shadow: 0 30px 60px -25px rgba(0, 40, 70, 0.5);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-portrait:hover img { transform: scale(1.04); }
.about-portrait::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, hsl(var(--navy-dark) / 0.65), transparent);
  pointer-events: none;
}
.about-portrait .portrait-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  z-index: 2;
}
.about-portrait .portrait-badge .bar {
  width: 2rem;
  height: 2px;
  background: hsl(var(--sunset));
  margin-bottom: 0.5rem;
  border-radius: 2px;
}
.about-portrait .portrait-badge strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-portrait .portrait-badge span {
  font-size: 0.8125rem;
  opacity: 0.8;
}

.about-hero-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--sunset));
  margin-bottom: 1rem;
}
.about-hero-text .eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: hsl(var(--sunset));
}
.about-hero-text h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .about-hero-text h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .about-hero-text h2 { font-size: 2.75rem; } }
.about-hero-text p {
  color: var(--muted-foreground);
  line-height: 1.75;
  font-size: 1.03125rem;
}
.about-hero-text p + p { margin-top: 1rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 1.65rem;
  height: 2px;
  border-radius: 999px;
  background: hsl(var(--sunset));
}

.about-team-section {
  position: relative;
  padding: 3rem 0 5rem;
  background:
    radial-gradient(circle at 10% 0%, hsl(var(--sunset) / 0.08), transparent 18rem),
    linear-gradient(180deg, hsl(195, 30%, 97%) 0%, #fff 100%);
}
@media (min-width: 1024px) { .about-team-section { padding: 4rem 0 7rem; } }

.about-team-list {
  display: grid;
  gap: 2rem;
  margin-top: 2.75rem;
}
.about-team-member {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid hsl(var(--teal-mid) / 0.14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 52px -38px rgba(0, 40, 70, 0.48);
  backdrop-filter: blur(10px);
}
@media (min-width: 860px) {
  .about-team-member {
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
    gap: 2.5rem;
    padding: 1.25rem 2rem 1.25rem 1.25rem;
  }
  .about-team-member.reverse {
    grid-template-columns: minmax(0, 1.22fr) minmax(250px, 0.78fr);
    padding: 1.25rem 1.25rem 1.25rem 2rem;
  }
  .about-team-member.reverse .about-team-photo {
    order: 2;
  }
  .about-team-member.reverse .about-team-copy {
    order: 1;
  }
}
.about-team-photo {
  position: relative;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 1.15rem;
  background: hsl(var(--teal-deep));
}
.about-team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, hsl(var(--navy-dark) / 0.32));
  pointer-events: none;
}
.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.about-team-member:hover .about-team-photo img {
  transform: scale(1.045);
}
.about-team-copy {
  padding: 0.25rem;
}
.about-team-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: hsl(var(--sunset) / 0.12);
  color: hsl(var(--sunset));
  font-family: var(--font-display);
  font-weight: 900;
}
.about-team-copy h3 {
  margin: 0 0 0.85rem;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.08;
}
.about-team-copy p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

/* About blocks — mirrors .whyus-feature layout but in rows */
.about-activities {
  padding: 3rem 0 5rem;
  background: var(--background);
}
@media (min-width: 1024px) { .about-activities { padding: 4rem 0 7rem; } }

.about-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0, 40, 70, 0.25);
}
.about-tile .about-tile-icon {
  width: 64px; height: 64px;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: hsl(var(--teal-deep) / 0.1);
}
.about-tile .about-tile-icon svg { width: 28px; height: 28px; color: hsl(var(--teal-mid)); }
.about-tile h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.about-tile p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.about-tile p strong { color: hsl(var(--teal-deep)); }

/* ============================================================
   BLOG
   ============================================================ */
.blog-list-section {
  padding: 5rem 0 6rem;
  background: hsl(195, 30%, 97%);
}
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1080px) {
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.blog-card {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}
.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: hsl(var(--muted));
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}
.blog-card-body {
  padding: 1.35rem;
}
.blog-card-meta {
  margin-bottom: 0.75rem;
  color: hsl(var(--sunset));
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}
.blog-card h2 a {
  color: hsl(var(--foreground));
}
.blog-card p {
  margin: 0.85rem 0 1.2rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.65;
}
.blog-card-link {
  color: hsl(var(--teal-deep));
  font-weight: 800;
}
.blog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.blog-more-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  background: hsl(var(--sunset));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(249, 115, 22, 0.22);
}
.blog-more-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
.blog-empty {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 2rem;
  text-align: center;
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
}
.blog-empty h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
}
.blog-empty p {
  margin: 0;
  color: hsl(var(--muted-foreground));
}
.blog-post {
  background: hsl(195, 30%, 97%);
}
.blog-post-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.blog-post-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 35, 0.24), rgba(6, 27, 35, 0.9));
}
.blog-post-head {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 9rem 0 4rem;
  color: #fff;
}
.blog-post-head h1 {
  margin: 0;
  max-width: 980px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.08;
}
@media (min-width: 760px) {
  .blog-post-head h1 { font-size: 4rem; }
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.76);
  font-weight: 700;
}
.blog-post-meta span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: hsl(var(--sunset));
}
.blog-post-content {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 6rem;
  color: hsl(var(--foreground));
  font-size: 1.08rem;
  line-height: 1.8;
}
.blog-post-content > *:first-child {
  margin-top: 0;
}
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
  margin: 2.1rem 0 0.75rem;
  font-family: var(--font-display);
  line-height: 1.18;
}
.blog-post-content h2 { font-size: 2rem; }
.blog-post-content h3 { font-size: 1.55rem; }
.blog-post-content a {
  color: hsl(var(--sunset));
  font-weight: 800;
}
.blog-post-content blockquote {
  margin: 2rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid hsl(var(--sunset));
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.blog-post-content img {
  max-width: 100%;
  border-radius: 16px;
  height: auto;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}
.blog-post-content img.align-center {
  display: block;
  margin: 1.5rem auto;
}
.blog-post-content img.align-left {
  float: left;
  max-width: 46%;
  margin: 0.45rem 1.6rem 1rem 0;
}
.blog-post-content img.align-right {
  float: right;
  max-width: 46%;
  margin: 0.45rem 0 1rem 1.6rem;
}
.blog-post-content::after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 720px) {
  .blog-post-content img.align-left,
  .blog-post-content img.align-right {
    float: none;
    display: block;
    max-width: 100%;
    margin: 1.5rem auto;
  }
}

/* Reasons — reuses .help dark-hero style + tiles */
.reasons-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(135deg, hsl(var(--navy-dark)) 0%, hsl(var(--navy)) 100%);
}
@media (min-width: 1024px) { .reasons-section { padding: 7rem 0; } }
.reasons-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 20%, hsl(var(--sunset) / 0.18), transparent 45%),
                    radial-gradient(circle at 85% 80%, hsl(var(--teal-mid) / 0.22), transparent 45%);
  pointer-events: none;
}
.reasons-section .container { position: relative; }
.reasons-head { text-align: center; margin-bottom: 3.5rem; }
.reasons-head .pricing-waves {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: hsl(var(--sunset) / 0.15);
}
.reasons-head .pricing-waves svg { width: 22px; height: 22px; color: hsl(var(--sunset)); }
.reasons-head .tag {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: hsl(var(--sunset));
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.reasons-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .reasons-head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .reasons-head h2 { font-size: 3rem; } }
.reasons-head p {
  color: rgba(255,255,255,0.7);
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.03125rem;
}

.reasons-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reasons-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reasons-grid { grid-template-columns: repeat(4, 1fr); } }

.reason-tile {
  background: hsl(var(--navy-dark) / 0.45);
  border: 1px solid hsl(0 0% 100% / 0.1);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.reason-tile:hover {
  transform: translateY(-4px);
  border-color: hsl(var(--sunset) / 0.5);
  background: hsl(var(--navy-dark) / 0.6);
}
.reason-tile .num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: hsl(var(--sunset));
  margin-bottom: 1rem;
}
.reason-tile .ico {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: hsl(var(--sunset) / 0.15);
  color: hsl(var(--sunset));
}
.reason-tile .ico svg { width: 24px; height: 24px; }
.reason-tile h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.reason-tile p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

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