@charset "UTF-8";
/* Kayaking Kochi - premium mobile-first landing */
:root {
  --teal: #0a3d4a;
  --teal-soft: #0d4f5c;
  --turquoise: #00b4b4;
  --gold: #ffb700;
  --gold-soft: #e6a500;
  --mangrove: #1a5f3a;
  --navy: #061f26;
  --cream: #f8f5f0;
  --cream-2: #ebe6dc;
  --white: #fff;
  --coral: #e85a2c;
  --text: #1a2e32;
  --muted: #5a6f75;
  --wa: #25d366;
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 4rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --shadow: 0 12px 40px rgba(10, 61, 74, 0.08);
  --shadow-lg: 0 24px 60px rgba(6, 31, 38, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
  overflow-x: hidden;
}

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

body.page {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='320' viewBox='0 0 420 320'%3E%3Cg fill='%231A5F3A' opacity='0.04'%3E%3Cpath d='M48 298 L52 118 Q38 108 28 88 Q48 105 54 115 Q46 72 22 48 Q52 78 56 112 Q62 58 78 42 Q58 85 58 118 L62 298 Z'/%3E%3Cpath d='M340 302 L344 145 Q328 132 312 108 Q338 128 346 142 Q332 98 302 72 Q342 108 348 140 Q358 88 388 68 Q348 118 350 148 L354 302 Z'/%3E%3C/g%3E%3Cg fill='%230A3D4A' opacity='0.035'%3E%3Cpath d='M120 38c8-6 18-8 28-4-10 2-18 8-24 16 12-4 24-2 34 4-14-2-26 2-38 10z'/%3E%3Cpath d='M268 52c6-5 14-6 22-2-8 1-14 6-18 12 10-3 18-1 26 3-10-2-20 1-30 8z'/%3E%3C/g%3E%3Cpath fill='none' stroke='%2300B4B4' stroke-width='0.7' opacity='0.06' d='M0 278 Q210 268 420 276'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%231A5F3A' fill-opacity='0.035' d='M50 8 L55 35 L82 38 L60 55 L66 82 L50 68 L34 82 L40 55 L18 38 L45 35 Z'/%3E%3C/svg%3E");
  background-size: 380px 290px, 100px 100px;
  background-position: 0 0, 22px 30px;
  padding-bottom: 5.5rem;
}

@media (max-width: 639px) {
  body.page {
    background-size: 280px 214px, 88px 88px;
  }
}

#main {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--teal);
}
a:hover {
  color: var(--turquoise);
}

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 10001;
  padding: 0.75rem 1.25rem;
  background: var(--teal);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus {
  top: 1rem;
}

.kerala-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.kerala-backdrop__crows {
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  height: 100px;
  opacity: 0.055;
  color: var(--teal);
}
.kerala-backdrop__svg {
  position: absolute;
  bottom: -4%;
  opacity: 0.055;
  color: var(--mangrove);
  width: min(48vw, 400px);
  height: auto;
}
.kerala-backdrop__svg--left {
  left: -10%;
}
.kerala-backdrop__svg--right {
  right: -12%;
  transform: scaleX(-1);
}

@media (max-width: 767px) {
  .kerala-backdrop__svg {
    width: 70vw;
    opacity: 0.04;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(248, 245, 240, 0.98);
  border-bottom: 1px solid rgba(10, 61, 74, 0.07);
  transition: background 0.25s, box-shadow 0.25s;
}
@media (min-width: 1024px) {
  .site-header {
    background: rgba(248, 245, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.site-header.is-scrolled {
  background: rgba(10, 61, 74, 0.94);
  border-bottom-color: transparent;
  box-shadow: var(--shadow-lg);
}
.site-header.is-scrolled .site-logo,
.site-header.is-scrolled .site-nav a:not(.site-nav__cta) {
  color: var(--cream);
}
.site-header.is-scrolled .site-logo span {
  color: var(--gold);
}
.site-header.is-scrolled .nav-toggle__bar {
  background: var(--cream);
}
.site-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.site-logo span {
  font-weight: 600;
  color: var(--turquoise);
}
.site-header.is-scrolled .site-nav__cta {
  color: var(--navy) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.site-header.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: var(--cream);
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
}
.site-nav.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
    position: static;
    transform: none !important;
    padding: 0;
    background: transparent !important;
    overflow: visible;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
@media (min-width: 1024px) {
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 0.1rem;
  }
}
.site-nav a {
  display: block;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--teal);
  border-radius: 10px;
}
.site-nav a:hover {
  background: rgba(0, 180, 180, 0.1);
}
.site-nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft)) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  margin-top: 0.5rem;
}
@media (min-width: 1024px) {
  .site-nav__cta {
    margin-top: 0;
    margin-left: 0.35rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.4rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--teal {
  background: linear-gradient(135deg, var(--teal-soft), var(--teal));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(10, 61, 74, 0.35);
}
.btn--teal:hover {
  color: var(--white);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(255, 183, 0, 0.35);
}
.btn--gold:hover {
  color: var(--navy);
}
.btn--coral {
  background: linear-gradient(135deg, var(--coral), #d94a1f);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(232, 90, 44, 0.4);
  font-size: 1rem;
  padding: 1rem 1.75rem;
  min-height: 48px;
}
.btn--coral:hover {
  color: var(--white);
}
.btn--wa-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-top: 0.5rem;
  min-height: 48px;
}
.btn--wa-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.btn--book {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem;
  min-height: 48px;
}
.btn--book:hover {
  background: var(--teal-soft);
  color: var(--white);
}
.btn--wa-large {
  background: var(--wa);
  color: var(--white);
  font-size: 1.05rem;
  padding: 1.1rem 1.75rem;
  min-height: 52px;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.4);
}
.btn--wa-large:hover {
  color: var(--white);
}
.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) max(1rem, env(safe-area-inset-left)) 4.5rem
    max(1rem, env(safe-area-inset-right));
  overflow: hidden;
}
.hero__parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Landscape banner: keep kayaks and water in view on tall viewports */
  object-position: center 42%;
}
@media (max-width: 639px) {
  .hero__image {
    object-position: 50% 40%;
  }
}
@media (min-width: 900px) {
  .hero__image {
    object-position: center 38%;
  }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 31, 38, 0.25) 0%, rgba(6, 31, 38, 0.55) 55%, rgba(6, 31, 38, 0.75) 100%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 640px) {
  .hero__inner {
    max-width: 40rem;
  }
}
.hero__panel {
  padding: clamp(1.35rem, 4vw, 2rem);
  border-radius: var(--radius);
  background: rgba(6, 31, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) {
  .hero__panel {
    background: rgba(6, 31, 38, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
.hero__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 0.75rem;
}
.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 6.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.03em;
}
.hero__lead {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 3vw, 1.12rem);
  color: rgba(248, 245, 240, 0.95);
}
.hero__lead strong {
  color: var(--gold);
}
.hero__trust {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(248, 245, 240, 0.95);
}
.hero__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
}
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 480px) {
  .hero__cta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero__scroll {
  position: absolute;
  bottom: max(1rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 32px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.15);
}
.hero__scroll::after {
  content: "";
  display: block;
  width: 4px;
  height: 10px;
  margin: 10px auto 0;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollB 2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll::after {
    animation: none;
  }
}
@keyframes scrollB {
  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(8px);
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow {
  max-width: 640px;
}
.section {
  padding: clamp(3.25rem, 8vw, 5rem) 0;
}
.section--white {
  background: var(--white);
}
.section--cream {
  background: rgba(255, 255, 255, 0.55);
}

.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}
.section-head__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 4.5vw, 2.15rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.section-head__title--solo {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-head__text {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.island-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 520px) {
  .island-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .island-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.island-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 61, 74, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.island-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.island-card__icon {
  width: 44px;
  height: 44px;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
}
.island-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
}
.island-card__text {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}

.banner-tour {
  position: relative;
  min-height: min(70vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-tour__bg {
  position: absolute;
  inset: 0;
}
.banner-tour__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.banner-tour__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 31, 38, 0.82) 0%, rgba(6, 31, 38, 0.45) 70%, transparent 100%);
}
@media (max-width: 767px) {
  .banner-tour__overlay {
    background: linear-gradient(180deg, rgba(6, 31, 38, 0.55) 0%, rgba(6, 31, 38, 0.82) 100%);
  }
}
.banner-tour__content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.25rem;
  max-width: 32rem;
}
.banner-tour__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin: 0 0 0.75rem;
}
.banner-tour__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.pick-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pick-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 61, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pick-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.pick-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pick-card__body {
  padding: 1.25rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.pick-card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
}
.pick-card__meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.pick-card__price {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--teal);
}
.pick-card__price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.map-wrap {
  max-width: 720px;
  margin: 0 auto;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 180, 180, 0.25);
}
.map-svg {
  display: block;
  width: 100%;
  height: auto;
}

.private-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .private-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.private-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.private-card img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}
.private-card__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(transparent, rgba(6, 31, 38, 0.85));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
}

.carousel__viewport {
  overflow: hidden;
  margin: 0 -0.35rem;
}
.carousel__track {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  display: flex;
  transition: transform 0.45s var(--ease);
}
.carousel__slide {
  flex: 0 0 auto;
  flex-shrink: 0;
  padding: 0 0.35rem;
  box-sizing: border-box;
}
.quote-card {
  margin: 0;
  height: 100%;
  min-height: 11rem;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 61, 74, 0.07);
  display: flex;
  flex-direction: column;
}
.quote-card__stars {
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.quote-card p {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
  flex: 1;
}
.quote-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quote-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 180, 180, 0.35);
  flex-shrink: 0;
}
.quote-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
}
.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
  color: var(--teal);
}
.carousel__btn:hover {
  background: var(--teal);
  color: var(--white);
}
.carousel__dots {
  display: flex;
  gap: 0.4rem;
}
.carousel__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--cream-2);
  cursor: pointer;
}
.carousel__dots button[aria-selected="true"] {
  background: var(--turquoise);
  transform: scale(1.15);
}

.why-list {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.why-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid rgba(10, 61, 74, 0.08);
  font-size: 1.02rem;
  color: var(--muted);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--turquoise);
}
.why-list strong {
  color: var(--teal);
}

.masonry {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .masonry {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 160px;
    grid-auto-flow: dense;
  }
  .masonry__item--tall {
    grid-row: span 2;
  }
  .masonry__item--wide {
    grid-column: span 2;
  }
}
.masonry__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.masonry__item:hover img {
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .masonry__item--tall,
  .masonry__item--wide {
    grid-column: span 2;
  }
}

.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 61, 74, 0.08);
  margin-bottom: 0.5rem;
}
.faq__item summary {
  padding: 1rem 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-final {
  padding: clamp(3.5rem, 9vw, 5rem) 0;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.22) 0%, rgba(0, 180, 180, 0.2) 45%, rgba(10, 61, 74, 0.12) 100%);
  border-top: 1px solid rgba(10, 61, 74, 0.08);
}
.cta-final__inner {
  text-align: center;
  max-width: 28rem;
  margin: 0 auto;
}
.cta-final__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 4.5vw, 2.1rem);
  font-weight: 700;
  color: var(--teal);
}
.cta-final__text {
  margin: 0 0 1.5rem;
  color: var(--muted);
}
.cta-final__email {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.form {
  margin-top: 1.75rem;
  text-align: left;
}
.form__row {
  margin-bottom: 1rem;
}
.form__row label,
.form__row legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.form input,
.form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 2px solid rgba(10, 61, 74, 0.12);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
  min-height: 48px;
}
.form textarea {
  min-height: 5rem;
  resize: vertical;
}
.form input:focus-visible,
.form textarea:focus-visible {
  outline: none;
  border-color: var(--turquoise);
}
.form__check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400;
  margin-top: 0.35rem;
  cursor: pointer;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: var(--teal);
  color: rgba(248, 245, 240, 0.88);
  padding: 2.5rem 1.25rem 1.25rem;
}
.site-footer a {
  color: var(--gold);
}
.site-footer a:hover {
  color: var(--white);
}
.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
.site-footer__logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}
.site-footer__logo span {
  color: var(--turquoise);
}
.site-footer__tag {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 260px;
}
.site-footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin: 0 0 0.35rem;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.site-footer__copy {
  text-align: center;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  opacity: 0.75;
}

.float-wa {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 950;
  max-width: calc(100vw - 2rem);
}
.float-wa__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 1.25rem;
  min-height: 52px;
  background: var(--wa);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
  line-height: 1.3;
  text-align: left;
}
.float-wa__btn:hover {
  color: var(--white) !important;
  transform: scale(1.02);
}

@media (min-width: 480px) {
  .float-wa__btn {
    font-size: 0.92rem;
  }
}
