:root {
  --gold: #d4b483;
  --gold-dark: #c4a26e;
  --navy: #06404c;
  --navy-soft: #0a5564;
  --cream: #eef7f8;
  --cream-2: #f5fbfc;
  --ink: #0c2c34;
  --muted: #4d646a;
  --aqua: #2bb8c4;
  --white: #ffffff;
  --black: #000000;
  --text: "Poppins", sans-serif;
  --serif: "Playfair Display", serif;
  --script: "Allison", cursive;
  --radius: 6px;
  --shadow: 0 18px 50px rgba(6, 64, 76, 0.12);
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  background: var(--cream-2);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.sec-kicker {
  display: inline-block;
  color: var(--aqua);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sec-title {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.18;
  font-weight: 700;
}

.sec-title span {
  display: block;
}

.sec-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--aqua);
  margin-right: 10px;
  vertical-align: middle;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid #d5e6e8;
  padding: 18px 0;
}

.faq-item h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 20px;
  margin-bottom: 8px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--aqua);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.theme-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.theme-btn.ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.theme-btn.ghost:hover {
  background: var(--white);
  color: var(--navy);
}

.theme-btn.outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.theme-btn.outline:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: 0.35s ease;
}

.header.is-scrolled,
.header.is-open {
  background: rgba(247, 251, 252, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(6, 64, 76, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
}

.logo img {
  height: 58px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.header.is-scrolled .logo img,
.header.is-open .logo img {
  filter: none;
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
}

.header.is-scrolled .nav a,
.header.is-open .nav a {
  color: var(--ink);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--aqua);
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--aqua);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  color: var(--white);
}

.header.is-scrolled .header-phone,
.header.is-open .header-phone {
  color: var(--ink);
}

.header-phone small {
  color: var(--aqua);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-phone strong {
  font-size: 15px;
}

.header-social {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
}

.header.is-scrolled .header-social,
.header.is-open .header-social {
  border-color: #cfe3e6;
  color: var(--ink);
}

.header-social:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
}

.header.is-scrolled .menu-toggle,
.header.is-open .menu-toggle {
  border-color: #cfe3e6;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  position: relative;
  margin: 0 auto;
}

.header.is-scrolled .menu-toggle span,
.header.is-scrolled .menu-toggle span::before,
.header.is-scrolled .menu-toggle span::after,
.header.is-open .menu-toggle span,
.header.is-open .menu-toggle span::before,
.header.is-open .menu-toggle span::after {
  background: var(--navy);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: var(--white);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 64, 76, 0.45) 0%, rgba(6, 64, 76, 0.18) 38%, rgba(6, 64, 76, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 110px;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--aqua);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
  text-wrap: balance;
}

.hero-content .lead {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills span {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  font-size: 13px;
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--aqua);
  width: 26px;
  border-radius: 20px;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  width: 100%;
  height: 72px;
  display: block;
}

/* Features */
.features {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
}

.feature-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
}

.feature-card h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.about-copy p.lead {
  margin: 22px 0 28px;
  max-width: 540px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.about-list li {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
}

.about-list i {
  color: var(--aqua);
  margin-top: 5px;
}

.about-photos {
  position: relative;
  min-height: 560px;
}

.about-photos .main {
  width: 78%;
  height: 520px;
  object-fit: cover;
  margin-left: auto;
}

.about-photos .float {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 48%;
  height: 280px;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: 8%;
  top: 40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-content: center;
  text-align: center;
  z-index: 2;
  border: 8px solid var(--white);
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--aqua);
  line-height: 1;
}

.about-badge span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Gallery mosaic */
.gallery {
  background: var(--cream-2);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 48px;
}

.gallery-head p {
  max-width: 320px;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 168px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--navy);
  color: var(--white);
  text-align: left;
  font-family: inherit;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(10) {
  grid-column: span 2;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 64, 76, 0.82) 100%);
  opacity: 0.72;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.gallery-cap,
.lb-cap {
  display: none;
}

.gallery-item::before {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
  transform: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 72px 80px 56px;
  background: rgba(6, 64, 76, 0.94);
  backdrop-filter: blur(10px);
}

.lightbox[hidden] {
  display: none;
}

.lb-stage {
  max-width: min(1100px, 100%);
  max-height: 100%;
  margin: 0;
  text-align: center;
}

.lb-stage img {
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lb-stage figcaption {
  margin-top: 16px;
  color: var(--white);
}

.lb-count {
  display: inline-block;
  color: var(--aqua);
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lb-cap {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  z-index: 2;
  transition: 0.25s ease;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover,
.lb-close:focus-visible,
.lb-prev:focus-visible,
.lb-next:focus-visible {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.lb-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

body.lb-open {
  overflow: hidden;
}

body.lb-open .wa-float {
  visibility: hidden;
}

/* Destinations */
.dest-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
}

.dest-tabs {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.dest-tabs button {
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d5e6e8;
  padding: 16px 0;
  font-size: 20px;
  font-family: var(--serif);
  color: #9a948c;
  cursor: pointer;
}

.dest-tabs button.active {
  color: var(--ink);
}

.dest-stage {
  position: relative;
  min-height: 560px;
}

.dest-panel {
  display: none;
  position: relative;
}

.dest-panel.active {
  display: block;
}

.dest-panel .big {
  width: 78%;
  height: 520px;
  object-fit: cover;
  margin-left: auto;
}

.dest-panel .small {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 46%;
  height: 270px;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: var(--shadow);
}

.dest-label {
  position: absolute;
  right: 24px;
  top: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
}

.dest-label small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}

.dest-label strong {
  font-family: var(--serif);
  font-size: 22px;
}

/* Pricing */
.pricing {
  background: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.price-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 540px;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(6, 64, 76, 0.16);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.price-card .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 0.9s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 64, 76, 0.08) 0%, rgba(6, 64, 76, 0.42) 42%, rgba(6, 64, 76, 0.92) 100%);
  transition: background 0.45s ease;
}

.price-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 3px;
  z-index: 3;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
}

.price-body {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 540px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(6, 64, 76, 0.28);
}

.price-card:hover .bg {
  transform: scale(1.12);
}

.price-card:hover::after {
  transform: scaleX(1);
}

.price-type {
  color: var(--aqua);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.price-card h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 28px;
  margin: 10px 0 6px;
  line-height: 1.2;
}

.amount {
  font-family: var(--serif);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 18px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.price-card li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.price-card li i {
  color: var(--aqua);
  margin-right: 8px;
}

.price-card .theme-btn {
  align-self: flex-start;
}

/* Stats + video */
.stats {
  background: var(--navy) url("../images/teknekaltisikliaksammanzara.jpeg") center/cover no-repeat;
  position: relative;
  color: var(--white);
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 64, 76, 0.86);
}

.stats .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.stats .script {
  font-family: var(--script);
  font-size: 56px;
  color: var(--aqua);
  line-height: 0.8;
}

.stats h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 18px;
}

.stat-meters {
  display: grid;
  gap: 22px;
}

.meter span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--aqua);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.is-in .bar i {
  width: var(--w);
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.video-card video {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.testi-slider {
  position: relative;
}

.testi-slide {
  display: none;
  background: var(--cream-2);
  padding: 40px;
}

.testi-slide.active {
  display: block;
}

.testi-slide p {
  font-size: 18px;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 22px;
}

.testi-slide h4 {
  color: var(--ink);
  font-family: var(--serif);
}

.testi-slide small {
  color: var(--aqua);
}

.testi-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.testi-nav button {
  width: 42px;
  height: 42px;
  border: 1px solid #cfe3e6;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: 0.25s ease;
}

.testi-nav button:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

/* Contact */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 56px 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d5e6e8;
  padding: 14px 0;
  margin-bottom: 16px;
  outline: none;
  background: transparent;
}

.contact-form textarea {
  min-height: 110px;
  resize: vertical;
}

.date-field {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.date-field span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
}

.contact-form input[type="date"],
.contact-form input[type="time"] {
  color: var(--ink);
  min-height: 48px;
  cursor: pointer;
  margin-bottom: 0;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.7;
  filter: invert(48%) sepia(42%) saturate(748%) hue-rotate(138deg);
}

.contact-visual {
  position: relative;
  min-height: 560px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.contact-visual .overlay-copy {
  position: absolute;
  inset: auto 32px 32px 32px;
  color: var(--white);
  z-index: 1;
}

.contact-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 64, 76, 0.78));
}

.contact-visual h3 {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.2;
}

.form-note {
  display: none;
  margin-top: 14px;
  color: #1f7a46;
  font-weight: 500;
}

.form-note.show {
  display: block;
}

/* Gallery / news */
.news-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
}

.news-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.06);
}

.news-card .meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(6, 64, 76, 0.88));
}

.news-card .date {
  display: inline-block;
  background: var(--aqua);
  color: var(--white);
  font-weight: 700;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: 13px;
}

.news-card h3 {
  font-family: var(--serif);
  font-size: 26px;
}

/* Footer — Voyacht Home 03 layout */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #919191;
  padding-top: 90px;
}

.footer-boat {
  position: absolute;
  left: -20px;
  bottom: 90px;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  transform: scaleX(-1);
}

.footer-wheel {
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 160px;
  color: rgba(191, 168, 136, 0.12);
  pointer-events: none;
  animation: spin-slow 70s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.footer-widgets {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1.25fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 70px;
}

.footer-widget h5 {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 36px;
  font-family: var(--text);
}

.footer-widget h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 30px;
  height: 3px;
  background: var(--aqua);
}

.footer-widget p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 28px;
}

.footer-contact,
.footer-links {
  display: grid;
  gap: 14px;
}

.footer-contact li,
.footer-links li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 24px;
  color: #919191;
}

.footer-contact li i,
.footer-links li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--aqua);
  font-size: 12px;
}

.footer-contact a,
.footer-links a {
  color: #919191;
  display: inline-block;
  position: relative;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--white);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--aqua);
  transition: 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.newsletter-form {
  position: relative;
  max-width: 270px;
}

.newsletter-form input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  padding: 12px 32px 12px 0;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 10px;
  background: none;
  border: 0;
  color: var(--aqua);
  cursor: pointer;
  font-size: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.footer-bottom-bar {
  position: relative;
  z-index: 1;
  background: #032830;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 40px;
  margin-bottom: 40px;
}

.copyright-text {
  font-size: 14px;
  color: #c4c5c7;
}

.powered-by {
  display: inline-block;
  margin-left: 8px;
  color: var(--aqua);
  font-weight: 500;
}

.powered-by:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(43, 184, 196, 0.35);
  background: transparent;
  color: var(--aqua);
  font-size: 16px;
  line-height: 1;
  transition: 0.25s ease;
}

.footer-social a:hover {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--white);
}

/* Amenities strip */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--white);
}

.amenity {
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.amenity:last-child {
  border-right: 0;
}

.amenity i {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 10px;
}

.amenity h4 {
  font-family: var(--serif);
  font-size: 20px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.location-card {
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.location-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.location-card .body {
  padding: 28px 28px 32px;
}

.location-card small {
  color: var(--aqua);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.location-card h3 {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 30px;
  margin: 8px 0 12px;
}

.location-card p {
  margin-bottom: 18px;
}

.location-card a.map {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
}

.location-card a.map:hover {
  color: var(--aqua);
}

.socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(191, 168, 136, 0.45);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink);
}

.contact-points i {
  color: var(--aqua);
  width: 18px;
}

.contact-points a:hover {
  color: var(--aqua);
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.wa-float i {
  font-size: 28px;
}

.wa-float:hover {
  color: #fff;
  transform: scale(1.06);
}

/* Mobile */
@media (max-width: 1100px) {
  .hero,
  .about-grid,
  .dest-layout,
  .stats .container,
  .testi-grid,
  .contact-grid,
  .amenities,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .price-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-widgets {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    padding: 120px 0 90px;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(10) {
    grid-column: span 2;
  }

  .price-card,
  .price-body {
    min-height: 480px;
  }

  .about-photos .float {
    width: 42%;
    height: 220px;
  }

  .about-photos,
  .dest-stage,
  .contact-visual {
    min-height: 420px;
  }

  .about-photos .main,
  .dest-panel .big {
    width: 100%;
    height: 420px;
  }
}

@media (max-width: 860px) {
  .header-phone,
  .header-social {
    display: none;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    background: var(--cream-2);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    color: var(--ink);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .hero-content {
    padding: 110px 0 80px;
  }

  .hero-wave {
    height: 48px;
  }

  .about-photos {
    min-height: auto;
    margin-top: 20px;
  }

  .about-photos .float {
    position: relative;
    width: 72%;
    height: 220px;
    left: 0;
    bottom: auto;
    margin-top: -70px;
  }

  .about-badge {
    left: 12px;
    top: 16px;
    width: 110px;
    height: 110px;
  }

  .about-badge strong {
    font-size: 26px;
  }

  .contact-form {
    padding: 36px 24px;
  }

  .exp-track,
  .news-grid,
  .form-row,
  .amenities,
  .feature-grid,
  .price-grid,
  .locations-grid,
  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(10) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(1) {
    min-height: 220px;
    grid-row: span 2;
  }

  .gallery-cap strong {
    font-size: 16px;
  }

  .gallery-item::before {
    opacity: 1;
    transform: none;
    width: 32px;
    height: 32px;
  }

  .lightbox {
    padding: 64px 16px 80px;
  }

  .lb-stage img {
    max-height: 62vh;
  }

  .lb-prev,
  .lb-next {
    top: auto;
    bottom: 16px;
    transform: none;
    width: 46px;
    height: 46px;
  }

  .lb-prev { left: 16px; }
  .lb-next { right: 16px; }

  .lb-close {
    top: 12px;
    right: 12px;
  }

  .price-card,
  .price-body {
    min-height: 440px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .footer-wheel,
  .footer-boat {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .features {
    margin-top: 0;
    padding-top: 40px;
  }

  .logo img {
    height: 48px;
    max-width: 160px;
  }
}

.feature-card,
.location-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover,
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.location-card img {
  transition: transform 0.7s ease;
}

.location-card:hover img {
  transform: scale(1.06);
}

.hero-kicker,
.hero-content h1,
.hero-content .lead,
.hero-actions,
.hero-dots {
  opacity: 0;
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-kicker { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.28s; }
.hero-content .lead { animation-delay: 0.42s; }
.hero-actions { animation-delay: 0.55s; }
.hero-dots { animation-delay: 0.7s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.feature-card:nth-child(2) { --d: 0.08s; }
.feature-card:nth-child(3) { --d: 0.16s; }
.feature-card:nth-child(4) { --d: 0.24s; }
.gallery-item:nth-child(2) { --d: 0.05s; }
.gallery-item:nth-child(3) { --d: 0.1s; }
.gallery-item:nth-child(4) { --d: 0.15s; }
.gallery-item:nth-child(5) { --d: 0.2s; }
.gallery-item:nth-child(6) { --d: 0.08s; }
.gallery-item:nth-child(7) { --d: 0.14s; }
.gallery-item:nth-child(8) { --d: 0.2s; }
.gallery-item:nth-child(9) { --d: 0.26s; }
.gallery-item:nth-child(10) { --d: 0.1s; }
.gallery-item:nth-child(11) { --d: 0.16s; }
.gallery-item:nth-child(12) { --d: 0.22s; }
.location-card:nth-child(2) { --d: 0.12s; }
.price-card:nth-child(2) { --d: 0.08s; }
.price-card:nth-child(3) { --d: 0.16s; }
.price-card:nth-child(4) { --d: 0.24s; }
.news-card:nth-child(2) { --d: 0.1s; }
.news-card:nth-child(3) { --d: 0.2s; }

.video-card {
  border-radius: 4px;
}

.wa-float {
  animation: wa-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
  transition: transform 0.25s ease;
}

@keyframes wa-pop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-dots button {
  transition: width 0.3s ease, background 0.3s ease;
}

.testi-slide.active {
  animation: fade-soft 0.45s ease;
}

@keyframes fade-soft {
  from { opacity: 0.35; }
  to { opacity: 1; }
}

.about-photos .main,
.about-photos .float {
  transition: transform 0.7s ease;
}

.about-photos:hover .main {
  transform: scale(1.02);
}

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: end stretch;
  overflow: hidden;
  color: var(--white);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 64, 76, 0.45) 0%, rgba(6, 64, 76, 0.18) 38%, rgba(6, 64, 76, 0.72) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 150px 0 88px;
  text-align: center;
}

.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-content .lead {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb a:hover { color: var(--aqua); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.service-detail-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-prose {
  margin: 0 0 22px;
}

.price-card h3 a:hover { color: var(--aqua); }

.header-social-extra { display: none; }

@media (min-width: 1100px) {
  .header-cta .header-social-extra { display: grid; }
}

@media (max-width: 1100px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-photo img { height: 380px; }
}

@media (max-width: 860px) {
  .page-hero { min-height: 340px; }
  .page-hero-content { padding: 120px 0 64px; }
  .service-detail-photo img { height: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-kicker,
  .hero-content h1,
  .hero-content .lead,
  .hero-actions,
  .hero-dots,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
