/* Kajaki Bytów: paleta głębia wody, turkus, piasek brzegu, noc na jeziorze */
:root {
  --color-deep: #0a1628;
  --color-surface: #0f2744;
  --color-ink: #0c1220;
  --color-body: #3d4f66;
  --color-muted: #6b7c90;
  --color-white: #f8fafc;
  --color-cream: #eaf3fb;
  --color-accent: #38bdf8;
  --color-accent-dark: #0369a1;
  --color-accent-soft: rgba(56, 189, 248, 0.15);
  --color-sand: #e8d5b5;
  --color-sand-dark: #c4a574;
  --color-wave: #38bdf8;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 12px 40px rgba(10, 22, 40, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-body);
  background: var(--color-white);
  padding-bottom: 88px;
}

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

a {
  color: var(--color-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-surface);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: var(--color-deep);
  padding: 0.75rem 1rem;
  font-weight: 700;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.container--narrow {
  width: min(720px, 100% - 2.5rem);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 39, 68, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand-logo {
  width: auto;
  max-height: 52px;
}

.nav {
  display: none;
  gap: 1.5rem;
  align-items: center;
  margin-left: auto;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-surface);
  text-decoration: none;
}

.nav a:hover {
  color: var(--color-accent-dark);
}

.nav-cta {
  background: var(--color-deep);
  color: var(--color-white) !important;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--color-accent-dark);
  color: var(--color-white) !important;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
}

.header-tel {
  display: none;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.header-tel-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-accent-dark);
}

.header-tel-num {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-deep);
}

.header-tel:hover .header-tel-num {
  color: var(--color-accent-dark);
}

.header-whatsapp {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s var(--ease-out);
}

.header-whatsapp svg {
  width: 20px;
  height: 20px;
}

.header-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
}

.menu-toggle {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-deep);
  margin-inline: auto;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(15, 39, 68, 0.08);
  background: var(--color-white);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  font-weight: 600;
  color: var(--color-surface);
  text-decoration: none;
  padding: 0.5rem 0;
}

.mobile-tel {
  font-weight: 800;
  color: var(--color-accent-dark) !important;
}

.mobile-whatsapp {
  font-weight: 800;
  color: #25d366 !important;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .header-tel {
    display: flex;
  }
  .header-whatsapp {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.68) 50%, rgba(10, 22, 40, 0.52) 100%),
    url("img/hero-bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
}

.hero-copy {
  color: var(--color-cream);
  max-width: 640px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  color: rgba(238, 246, 244, 0.92);
}

.trust-strip a {
  color: var(--color-sand);
  font-weight: 600;
}

.stars {
  color: var(--color-sand-dark);
  letter-spacing: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 1rem;
  color: var(--color-white);
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-wave);
}

.hero-lead {
  font-size: 1.08rem;
  max-width: 38ch;
  margin: 0 0 1.5rem;
  color: rgba(248, 250, 252, 0.88);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-sand-dark) 100%);
  color: var(--color-deep);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08) inset, 0 14px 32px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  color: var(--color-deep);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08) inset, 0 18px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(248, 250, 252, 0.45);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebe5b;
  color: #fff;
  transform: translateY(-1px);
}

.hero-facts {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.hero-facts li {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.92);
}

.hero-facts a {
  color: inherit;
  text-decoration: none;
}

.hero-rivers {
  margin: 0;
  max-width: 46ch;
  font-size: 0.85rem;
  color: rgba(238, 246, 244, 0.62);
}

.scroll-hint {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.55);
  text-decoration: none;
}

.scroll-hint:hover {
  color: var(--color-sand);
}

/* Stats */
.stats-bar {
  background: var(--color-cream);
  border-block: 1px solid rgba(15, 39, 68, 0.06);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--color-surface);
}

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

.stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
}

.stat-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  color: var(--color-accent-dark);
}

.stat-text {
  display: flex;
  flex-direction: column;
}

.stat-text strong {
  font-size: 1rem;
  color: var(--color-ink);
  line-height: 1.25;
}

.stat-text span {
  font-size: 0.82rem;
  color: var(--color-muted);
  line-height: 1.3;
}

.stat-cta {
  padding: 0.6rem 0.85rem;
  margin: -0.6rem -0.85rem;
  background: var(--color-accent-soft);
  transition: background 0.2s;
}

.stat-cta:hover {
  background: rgba(56, 189, 248, 0.28);
}

.stat-cta .stat-text strong {
  color: var(--color-accent-dark);
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--muted {
  background: linear-gradient(180deg, #eef5fc 0%, var(--color-white) 100%);
}

.section--dark {
  background: linear-gradient(165deg, var(--color-deep) 0%, #132a45 55%, #0d2138 100%);
  color: rgba(248, 250, 252, 0.85);
}

.section-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent-dark);
  margin: 0 0 0.5rem;
}

.section-kicker--on-dark {
  color: var(--color-wave);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--color-ink);
  margin: 0 0 1rem;
  line-height: 1.2;
  text-wrap: balance;
}

.title-on-dark {
  color: var(--color-white) !important;
}

.section-intro {
  max-width: 60ch;
  margin: 0 0 2rem;
}

.google-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.6rem;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-surface);
  text-decoration: none;
  width: fit-content;
}

.google-rating:hover {
  color: var(--color-accent-dark);
}

.google-rating:hover span {
  color: inherit;
}

.google-rating-stars {
  color: var(--color-sand-dark);
  letter-spacing: 2px;
  font-size: 1.05rem;
}

.google-rating strong {
  color: var(--color-ink);
  font-size: 1.05rem;
}

.google-rating span {
  color: var(--color-muted);
}

.prose {
  margin: 0 0 1rem;
}

.prose.small {
  font-size: 0.95rem;
}

.prose.small.muted {
  color: var(--color-muted);
}

/* Cards */
.cards-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.offer-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0 0 1.5rem;
  border: 1px solid rgba(15, 39, 68, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-card img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.offer-card-wide {
  aspect-ratio: 2 / 1;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1rem 1.25rem 0.5rem;
  color: var(--color-ink);
}

.offer-card p {
  margin: 0 1.25rem 1rem;
  flex-grow: 1;
  font-size: 0.98rem;
}

.text-link {
  margin: 0 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-accent-dark);
}

.text-link:hover {
  color: var(--color-surface);
}

.text-link--on-dark {
  color: var(--color-wave);
}

.offer-card--featured {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 0 1px var(--color-accent-soft), var(--shadow-md);
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-sand-dark);
  color: var(--color-deep);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
}

/* Split */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse > :first-child {
    order: 2;
  }
}

.split-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 39, 68, 0.08);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.spec-grid div {
  background: var(--color-cream);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 39, 68, 0.06);
}

.spec-grid dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin: 0;
}

.spec-grid dd {
  margin: 0.2rem 0 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ink);
}

/* Steps */
.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

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

.steps li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-wave);
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--color-white);
}

.steps p {
  margin: 0;
  font-size: 0.98rem;
  color: rgba(248, 250, 252, 0.78);
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.section-cta--center {
  justify-content: center;
  margin-top: 2rem;
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  background: var(--color-cream);
  color: var(--color-surface);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

/* Testimonial carousel */
.testimonial-carousel {
  position: relative;
}

.testimonial-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  margin: 0;
  padding: 1.75rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.testimonial-slide p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--color-surface);
  max-width: 65ch;
}

.testimonial-slide cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--color-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(15, 39, 68, 0.15);
  background: var(--color-white);
  color: var(--color-surface);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.testimonial-btn svg {
  width: 18px;
  height: 18px;
}

.testimonial-btn:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 39, 68, 0.18);
  cursor: pointer;
}

.testimonial-dot[aria-current="true"] {
  background: var(--color-accent-dark);
  width: 22px;
  border-radius: 999px;
  transition: width 0.2s, border-radius 0.2s;
}

/* FAQ */
.faq details {
  background: var(--color-white);
  border: 1px solid rgba(15, 39, 68, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
}

.faq summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-ink);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  font-weight: 400;
  color: var(--color-accent-dark);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.98rem;
}

/* CTA final */
.cta-final {
  background: linear-gradient(135deg, #042a47 0%, var(--color-deep) 40%, #1e3a5f 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  color: rgba(248, 250, 252, 0.9);
}

.cta-final-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 880px) {
  .cta-final-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.lead-on-dark {
  margin: 0;
  max-width: 42ch;
  color: rgba(248, 250, 252, 0.78);
}

.kontakt-logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, transform 0.2s var(--ease-out);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.contact-card--static:hover {
  transform: none;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 250, 252, 0.55);
}

.contact-card strong {
  font-size: 1.2rem;
  color: var(--color-white);
}

.contact-hint {
  font-size: 0.85rem;
  color: var(--color-wave);
}

/* Footer */
.site-footer {
  background: var(--color-ink);
  color: rgba(248, 250, 252, 0.65);
  padding: 2rem 0;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0 0 0.75rem;
}

.footer-inner a {
  color: var(--color-wave);
}

.footer-note {
  font-size: 0.8rem;
  max-width: 70ch;
  opacity: 0.85;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom));
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta-btn {
  flex: 1;
  text-align: center;
  font-weight: 800;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-deep);
  text-decoration: none;
}

.sticky-cta-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
}

.sticky-cta-whatsapp svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* Legal pages */
.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--color-ink);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.legal .updated {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ink);
  margin: 2.25rem 0 0.75rem;
  line-height: 1.25;
}

.legal h3 {
  font-size: 1.1rem;
  color: var(--color-surface);
  margin: 1.5rem 0 0.5rem;
}

.legal p,
.legal li {
  margin: 0 0 0.85rem;
}

.legal ul,
.legal ol {
  padding-left: 1.3rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.75rem;
  font-size: 0.92rem;
}

.legal table th,
.legal table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(15, 39, 68, 0.12);
  vertical-align: top;
}

.legal table th {
  background: var(--color-cream);
}

.legal-callout {
  background: var(--color-cream);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-deep);
  color: rgba(248, 250, 252, 0.92);
  padding: 1.15rem 1.25rem calc(1.15rem + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
  max-width: 62ch;
  color: rgba(248, 250, 252, 0.85);
}

.cookie-banner a {
  color: var(--color-wave);
}

.cookie-banner-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-banner-actions button {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-deep);
}

.cookie-btn-reject {
  background: transparent;
  border-color: rgba(248, 250, 252, 0.35);
  color: var(--color-white);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-legal-links button {
  font: inherit;
  background: none;
  border: none;
  padding: 0;
  color: var(--color-wave);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
