:root {
  --navy-deep: #0d2340;
  --navy-mid: #1a365d;
  --navy-light: #2a4a7f;
  --ocean: #0070cc;
  --ocean-bright: #007bff;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --sand: #f7f3ea;
  --white: #ffffff;
  --off-white: #f4f7f6;
  --text-dark: #0d1b2a;
  --text-mid: #4a5568;
  --text-muted: #718096;
  --whatsapp: #25d366;
  --viber: #7360f2;
  --footer-bg: #070f1c;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.14);
  --shadow-nav: 0 2px 20px rgba(13, 35, 64, 0.18);
  --shadow-gold: 0 0 40px rgba(201, 169, 110, 0.25);

  --radius-sharp: 2px;
  --radius-card: 4px;
  --radius-pill: 50px;

  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
* {
  cursor: none;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s var(--ease-out);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 169, 110, 0.55);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.4s var(--ease-out),
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: rgba(201, 169, 110, 0.9);
  margin-top: -9px;
  margin-left: -9px;
}

/* ═══════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold), var(--ocean-bright));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  background: rgba(8, 28, 55, 0.32);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    height 0.4s ease;
}
nav.scrolled {
  background: rgba(13, 35, 64, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  height: 64px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.24);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}
.logo-icon {
  width: 50px;
  height: 50px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  filter: drop-shadow(0 3px 10px rgba(201, 169, 110, 0.35));
}
.logo span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition:
    color 0.3s,
    opacity 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition:
    left 0.35s var(--ease-out),
    right 0.35s var(--ease-out);
}
.nav-links a:hover {
  color: var(--white);
  opacity: 1;
}
.nav-links a:hover::after {
  left: 0;
  right: 0;
}

/* Nav CTA */
.nav-cta {
  display: inline-block;
  padding: 0.65rem 1.7rem;
  background: linear-gradient(
    135deg,
    #d6b77d 0%,
    var(--gold) 55%,
    #b99358 100%
  );
  color: var(--navy-deep) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 22px rgba(201, 169, 110, 0.32);
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: linear-gradient(
    135deg,
    #e8d5a3 0%,
    var(--gold) 70%,
    #c3a06b 100%
  ) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 169, 110, 0.4);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  width: auto;
  z-index: 105;
  background: rgba(26, 54, 93, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.2rem;
  padding: 1.25rem 1rem 1.1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease-out);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-menu-cta {
  margin-top: 0.35rem;
  width: 100%;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.mobile-menu-cta .btn {
  width: 100%;
  text-align: center;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(13, 35, 64, 0.84) 0%,
      rgba(0, 64, 120, 0.52) 55%,
      rgba(0, 34, 70, 0.74) 100%
    ),
    url("../assets/sunset.jpg") center 65% / cover no-repeat;
}
/* Grain texture overlay */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
/* Radial light leak */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 65% 75%,
    rgba(0, 112, 204, 0.18) 0%,
    transparent 60%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.45rem, 6.8vw, 5.9rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(1.02rem, 1.75vw, 1.22rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 480px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.9s var(--ease-out) forwards;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
.scroll-hint-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.scroll-line-wrap {
  width: 1px;
  height: 52px;
  overflow: hidden;
  position: relative;
}
.scroll-line-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2.2s 1.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

/* Wave divider */
.wave-wrap {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}
.wave-wrap svg {
  width: 100%;
  height: 80px;
}

/* ═══════════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════════ */
section {
  padding: 7rem 4rem;
}

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy-mid);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
}
.section-title.light {
  color: var(--white);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: var(--radius-sharp);
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn:hover::before {
  transform: translateX(0);
}

.btn-gold {
  background: linear-gradient(
    135deg,
    #d6b77d 0%,
    var(--gold) 55%,
    #b99358 100%
  );
  color: var(--navy-deep);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 24px rgba(201, 169, 110, 0.28);
}
.btn-gold::before {
  background: rgba(255, 255, 255, 0.28);
}
.btn-gold:hover {
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(201, 169, 110, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.btn-outline-white::before {
  background: rgba(255, 255, 255, 0.12);
}
.btn-outline-white:hover {
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-mid);
  border: 1px solid var(--navy-mid);
}
.btn-outline-navy::before {
  background: var(--navy-mid);
}
.btn-outline-navy:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section {
  background: var(--white);
  padding: 8rem 4rem;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -22px;
  left: -22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid var(--gold);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.about-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 45%;
  height: 45%;
  background: var(--sand);
  z-index: -1;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  z-index: 2;
  background: var(--navy-mid);
  padding: 1.25rem 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.about-badge span:first-child {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-badge-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.about-badge-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.3rem;
  display: block;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-top: 1.5rem;
}
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.captain-card {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(13, 35, 64, 0.14);
  background: var(--sand);
  border-radius: var(--radius-card);
}
.captain-photo {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #d9e1ed;
  background-position: 50% 28%;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.captain-info {
  text-align: left;
}
.captain-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.captain-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy-mid);
}
.captain-info p {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(13, 35, 64, 0.18);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  border-radius: var(--radius-sharp);
  transition:
    border-color 0.3s,
    color 0.3s;
}
.pill:hover {
  border-color: var(--gold);
  color: var(--navy-mid);
}
.pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  transition: gap 0.3s;
}
.about-link:hover {
  gap: 1rem;
}
.about-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ═══════════════════════════════════════════
   PRICING
═══════════════════════════════════════════ */
.pricing-section {
  background: var(--sand);
  text-align: center;
}
.pricing-section .section-title {
  margin-bottom: 0;
}
.pricing-card-wrap {
  max-width: 560px;
  margin: 3.5rem auto 0;
}
.pricing-card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.pricing-card:hover {
  box-shadow: var(--shadow-hover);
}
/* Top gold line */
.pricing-card::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--gold) 40%,
    var(--gold) 60%,
    transparent 100%
  );
}
/* Dark inner header */
.pricing-header {
  background: linear-gradient(
    145deg,
    var(--navy-mid) 0%,
    var(--navy-deep) 100%
  );
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.pricing-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 112, 204, 0.15);
}
.pricing-header::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.08);
}
.pricing-anchor-icon {
  display: block;
  margin: 0 auto 0.75rem;
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.pricing-badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 1.25rem;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.pricing-amount sup {
  font-size: 2.2rem;
  vertical-align: super;
}
.pricing-amount sub {
  font-size: 1.1rem;
  vertical-align: sub;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0;
}
.pricing-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
.pricing-time-pill svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

/* Pricing body */
.pricing-body {
  padding: 2.25rem 2.5rem 2.5rem;
}
.pricing-includes-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.pricing-list {
  list-style: none;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pricing-list li:last-child {
  border-bottom: none;
}
.check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--ocean-bright);
  fill: none;
  stroke-width: 2;
}
.pricing-cta {
  margin-top: 2rem;
  width: 100%;
  text-align: center;
}
.btn-full {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-section {
  background: var(--white);
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 220px;
  gap: 10px;
  max-width: 1160px;
  margin: 3rem auto;
}
.gallery-section .gallery-grid:not(.gallery-grid-extra) {
  margin: 2.2rem auto 0.2rem;
}
.g-item {
  position: relative;
  overflow: hidden;
}
.g-item:first-child {
  grid-row: 1 / 3;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.g-item:hover img {
  transform: scale(1.07);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 64, 0);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}
.g-item:hover .g-overlay {
  background: rgba(13, 35, 64, 0.45);
}
.g-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--white);
  opacity: 0;
  letter-spacing: 0.05em;
  transform: translateY(8px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.g-item:hover .g-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid-extra {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px;
  margin: 0 !important;
}
.gallery-grid-extra.open {
  display: grid;
  margin-top: 0 !important;
}
.gallery-grid-extra .g-item:first-child {
  grid-row: auto;
  grid-column: auto;
}

@media (min-width: 769px) {
  .gallery-grid-extra.open {
    margin-top: 0.6rem !important;
  }
}

@media (max-width: 768px) {
  .gallery-grid-extra.open {
    margin-top: -9rem !important;
  }
}

/* ═══════════════════════════════════════════
   BOOKING
═══════════════════════════════════════════ */
.booking-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a3060 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem;
}
/* Dot grid texture */
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}
/* Decorative circles */
.booking-section::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(42, 74, 127, 0.3);
  pointer-events: none;
}
.booking-deco {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(42, 74, 127, 0.25);
  pointer-events: none;
}
.booking-section .eyebrow {
  color: var(--gold);
}
.booking-section .section-title {
  color: var(--white);
}
.booking-sub {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 420px;
  margin: 1rem auto 0;
}
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  border: none;
  color: var(--white);
  text-decoration: none;
  min-width: 210px;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.book-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.book-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.book-btn:hover::before {
  opacity: 1;
}
.book-btn.wa {
  background: #25d366;
}
.book-btn.vb {
  background: #7360f2;
}
.book-btn.ig {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.book-btn-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.book-btn-text {
  text-align: left;
}
.book-btn-name {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
}
.book-btn-sub {
  display: block;
  font-size: 0.72rem;
  opacity: 0.78;
  font-weight: 300;
  margin-top: 1px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-card);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
}
.location-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}
.location-badge strong {
  color: var(--gold);
  font-weight: 500;
}
.booking-location-wrap {
  margin-top: 0;
  display: flex;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--navy-mid);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem;
}
.testimonials-section::after {
  content: "\201C";
  position: absolute;
  bottom: -5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 30rem;
  line-height: 1;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 3.5rem auto 0;
  position: relative;
  z-index: 1;
}
.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 2.5rem;
  text-align: left;
  border-radius: var(--radius-card);
  transition:
    border-color 0.4s,
    background 0.4s;
}
.testi-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 1.1rem;
}
.testi-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.6rem;
}
.testi-author {
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--footer-bg);
  padding: 5.5rem 4rem 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.5rem;
}
/* Newsletter */
.newsletter-row {
  display: flex;
  margin-top: 1.5rem;
}
.newsletter-input {
  flex: 1;
  padding: 0.78rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-btn {
  padding: 0.78rem 1.25rem;
  background: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-deep);
  transition: opacity 0.25s;
}
.newsletter-btn:hover {
  opacity: 0.85;
}
.newsletter-input:disabled,
.newsletter-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.newsletter-note {
  margin-top: 0.5rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.4);
}
/* Footer links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}
.footer-links a:hover {
  color: var(--gold);
}
/* Social icons */
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-ico {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sharp);
  transition:
    border-color 0.3s,
    background 0.3s;
}
.social-ico:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}
.social-ico.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(1);
}
.social-ico svg {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.55);
}
/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
}
.footer-logo {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.footer-logo span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
}

/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  section {
    padding: 5.5rem 2.5rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrap img {
    height: 380px;
  }
  .about-badge {
    right: 0;
    padding: 1rem 1.4rem;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
  }
  nav.scrolled {
    padding: 0 1.5rem;
  }
  .nav-links-desktop {
    display: none;
  }
  .mobile-menu {
    top: 62px;
    left: 0;
    right: 0;
  }
  .mobile-menu a {
    font-size: 1rem;
    font-weight: 400;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 4.5rem 1.5rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .about-image-wrap img {
    object-position: 32% center !important;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-grid-extra {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .g-item:first-child {
    grid-row: auto;
    grid-column: 1 / 3;
  }
  .booking-buttons {
    flex-direction: column;
    align-items: center;
  }
  .book-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    top: 60px;
    left: 0;
    right: 0;
  }
  .mobile-menu a {
    font-size: 1rem;
  }
  .hero-title {
    font-size: 2.35rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .captain-card {
    align-items: flex-start;
  }
  .captain-photo {
    width: 72px;
    height: 72px;
  }
  .about-image-wrap img {
    object-position: 20% center !important;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px;
  }
  #fullGalleryBtn {
    transform: translateY(-100px);
  }
  .gallery-grid-extra {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }
  .g-item:first-child {
    grid-row: auto;
    grid-column: auto;
  }

  .about-badge {
    bottom: 10px;
    padding: 0.6rem 0.9rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  }
  .about-badge-num,
  .about-badge span:first-child {
    font-size: 1.5rem;
  }
  .about-badge-label {
    font-size: 0.5rem;
    letter-spacing: 0.16em;
  }
}

/* ═══════════════════════════════════════════
   CREW (Owner + Captain) — added
═══════════════════════════════════════════ */
.crew-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.crew-grid .captain-card {
  flex: 1 1 240px;
  margin-top: 0;
}
.captain-photo.role-owner {
  background-image: url("../assets/owner_tasos.jpg");
}
.captain-photo.role-captain {
  background-image: url("../assets/captain_alex.png");
}

/* ═══════════════════════════════════════════
   ADDITIONAL SERVICES (Island Cruise / Transfers) — added
   Whole-card links, no price shown yet (enquire on request)
═══════════════════════════════════════════ */
.services-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 900px;
  margin: 2rem auto 0;
  text-align: left;
}
.service-link-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s;
}
.service-link-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.service-link-body {
  flex: 1;
  min-width: 0;
}
.service-link-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-link-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy-mid);
  fill: none;
  stroke-width: 1.6;
}
.service-link-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy-mid);
  margin-bottom: 0.35rem;
}
.service-link-desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.service-link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  transition: gap 0.3s;
}
.service-link-card:hover .service-link-cta {
  gap: 0.65rem;
}

/* ═══════════════════════════════════════════
   CALL BUTTON — added (README calls for WA/Viber/IG/Call)
═══════════════════════════════════════════ */
.book-btn.call {
  background: linear-gradient(
    135deg,
    var(--navy-light) 0%,
    var(--navy-mid) 100%
  );
}

/* ═══════════════════════════════════════════
   TOUCH DEVICES — disable desktop-only cursor effect
   (phones have no pointer to track; leaving it on wastes
   a requestAnimationFrame loop for something invisible)
═══════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .cursor,
  .cursor-ring {
    display: none;
  }
  * {
    cursor: auto;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE FIXES — added
   .about-section / .testimonials-section / .booking-section
   each hardcode "8rem 4rem" padding as a class-level rule,
   which beats the generic `section` responsive overrides above
   on specificity — so they never actually shrank on phones.
   Restoring the intended cascade here.
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-section,
  .testimonials-section,
  .booking-section {
    padding: 5.5rem 2.5rem;
  }
  .services-strip {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-section,
  .testimonials-section,
  .booking-section {
    padding: 4.5rem 1.5rem;
  }
  .pricing-amount {
    font-size: 4.4rem;
  }
  .pricing-header {
    padding: 2rem 1.75rem 1.5rem;
  }
  .pricing-body {
    padding: 1.85rem 1.75rem 2rem;
  }
  .crew-grid {
    flex-direction: column;
  }
  .crew-grid .captain-card {
    flex: 1 1 auto;
  }
}
@media (max-width: 480px) {
  .about-section,
  .testimonials-section,
  .booking-section {
    padding: 3.5rem 1.25rem;
  }
  .pricing-amount {
    font-size: 3.6rem;
  }
  .service-link-card {
    padding: 1.35rem 1.25rem;
  }
  .book-btn {
    min-width: 0;
  }
}

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE (EN / ΕΛ) — added
═══════════════════════════════════════════ */
.lang-toggle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  cursor: pointer;
  transition:
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
}
.lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
/* nav.scrolled .lang-toggle {
  color: var(--navy-mid);
  border-color: rgba(13, 35, 64, 0.35);
} */
nav.scrolled .lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}
.nav-mobile-right {
  display: none;
  align-items: center;
  gap: 0.85rem;
}
@media (max-width: 768px) {
  .nav-mobile-right {
    display: flex;
  }
  .lang-toggle-mobile {
    padding: 0.36rem 0.8rem;
  }
}

/* ═══════════════════════════════════════════
   CONTACT / FIND US — added
═══════════════════════════════════════════ */
.contact-section {
  padding: 8rem 4rem;
  background: var(--sand);
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  text-align: left;
  align-items: stretch;
}
.contact-map-wrap {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.contact-map-wrap iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 280px;
  display: block;
  filter: saturate(0.85);
}
.contact-map-link {
  display: block;
  text-align: center;
  padding: 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean-bright);
  background: var(--white);
  transition: background 0.3s;
}
.contact-map-link:hover {
  background: var(--sand);
}
.contact-info {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 2rem 1.9rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-info-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark, #a8865a);
}
.contact-info-value {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dark, var(--navy-mid));
}
.contact-info-link {
  color: var(--ocean-bright);
  transition: color 0.3s;
  word-break: break-all;
}
.contact-info-link:hover {
  color: var(--navy-mid);
}
@media (max-width: 1024px) {
  .contact-section {
    padding: 5.5rem 2.5rem;
  }
}
@media (max-width: 850px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4.5rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .contact-section {
    padding: 3.5rem 1.25rem;
  }
  .contact-info {
    padding: 1.6rem 1.35rem;
  }
}

/* ═══════════════════════════════════════════
   DISABLED SOCIAL ICONS (coming soon) — added
═══════════════════════════════════════════ */
.social-ico.is-disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY — visible keyboard focus — added
═══════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
