/* ================================================================
   RENT A BOAT PAG - Luci & Kety Boats
   Main stylesheet · Mediterranean family-run aesthetic
   ================================================================ */

:root {
  /* Colors - Sea blue + warm yellow + cream */
  --sea: #1a7fb8;
  --sea-dark: #0d4a70;
  --sea-deep: #082a42;
  --sea-light: #4ba8d9;
  --sea-pale: #e8f3fb;
  --sun: #f4b731;
  --sun-dark: #d99a1c;
  --sun-light: #fce4a0;
  --coral: #e56b4a;
  --cream: #fdfaf2;
  --sand: #f7efda;
  --sand-warm: #ead7a8;
  --ink: #0a2540;
  --ink-soft: #3a5a7a;
  --line: rgba(10, 37, 64, 0.12);
  --line-soft: rgba(10, 37, 64, 0.06);
  --white: #ffffff;

  /* Type scale */
  --font-display: 'Fraunces', Georgia, serif;
  --font-ital: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1280px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow: 0 12px 32px -8px rgba(10, 37, 64, 0.15);
  --shadow-lg: 0 40px 80px -30px rgba(10, 37, 64, 0.25);

  /* Transitions */
  --ease: cubic-bezier(0.2, 0.9, 0.3, 1);
  --dur: 0.3s;
}

/* ================================================================
   RESET & BASE
   ================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--sea);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font: inherit;
}

::selection {
  background: var(--sun);
  color: var(--ink);
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--ink);
}

.ital {
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

em.accent {
  color: var(--coral);
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
}

em.accent-sun {
  color: var(--sun-dark);
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sea);
}

.eyebrow--center {
  justify-content: center;
}

/* ================================================================
   LAYOUT
   ================================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
}

section {
  padding: var(--sp-10) 0;
  position: relative;
}

@media (max-width: 640px) {
  section {
    padding: var(--sp-9) 0;
  }
}

.section-head {
  max-width: 780px;
  margin-bottom: var(--sp-8);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p.lead {
  margin-top: var(--sp-5);
}

/* ================================================================
   NAVIGATION
   ================================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(253, 250, 242, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

@media (max-width: 640px) {
  .nav {
    padding: 0.75rem 1.25rem;
  }
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--sea-light), var(--sea-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 127, 184, 0.3);
}

.brand-mark svg {
  width: 26px;
  height: 26px;
  fill: var(--cream);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--sea);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--cream) !important;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
}

.nav-cta:hover {
  background: var(--coral);
  color: var(--cream) !important;
}

.lang-switch {
  display: flex;
  gap: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
}

.lang-switch a {
  color: var(--ink-soft);
  padding: 4px 8px;
  border-radius: 4px;
}

.lang-switch a.active {
  color: var(--ink);
  font-weight: 700;
  background: var(--sand-warm);
}

.nav-burger {
  display: none;
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: var(--radius-sm);
  color: var(--cream);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 1.25rem;
  }
  .nav-links a:not(.nav-cta):not(.lang-switch a) {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-links .lang-switch {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur), box-shadow var(--dur);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn .arr {
  transition: transform var(--dur) var(--ease);
}

.btn:hover .arr {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 14px 30px -10px rgba(229, 107, 74, 0.5);
}

.btn-wa {
  background: #25d366;
  color: var(--white);
}

.btn-wa:hover {
  background: #1eba56;
  color: var(--white);
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-sun {
  background: var(--sun);
  color: var(--ink);
}

.btn-sun:hover {
  background: var(--sun-dark);
  color: var(--ink);
  box-shadow: 0 14px 30px -10px rgba(244, 183, 49, 0.6);
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

/* ================================================================
   HERO
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 42, 66, 0.35) 0%, rgba(8, 42, 66, 0.55) 60%, rgba(8, 42, 66, 0.8) 100%),
    linear-gradient(90deg, rgba(8, 42, 66, 0.6) 0%, transparent 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: end;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding: 0 1.25rem;
  }
  .hero {
    padding: 120px 0 60px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sun);
}

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.98;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.hero h1 .r2 {
  display: block;
}

.hero h1 .r3 {
  display: block;
  font-weight: 500;
}

.hero h1 em {
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}

.hero-lead {
  margin-top: 1.5rem;
  font-size: 1.15rem;
  line-height: 1.55;
  max-width: 620px;
  color: rgba(253, 250, 242, 0.9);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-lead strong {
  color: var(--sun);
  font-weight: 600;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.9rem;
  background: rgba(253, 250, 242, 0.12);
  border: 1px solid rgba(253, 250, 242, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sun);
}

/* Hero info card (right side) */
.hero-card {
  background: rgba(253, 250, 242, 0.96);
  color: var(--ink);
  padding: 2rem;
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--sun), var(--coral));
  border-radius: 0 0 3px 3px;
}

.hero-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sea);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.hero-card h3 em {
  color: var(--coral);
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.hero-card-rating .score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}

.hero-card-rating .stars {
  color: var(--sun-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-card-rating .source {
  font-size: 0.72rem;
  color: var(--ink-soft);
  line-height: 1.3;
}

.hero-card-phones a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.hero-card-phones a:hover {
  color: var(--coral);
}

.hero-card-phones a svg {
  width: 18px;
  height: 18px;
  color: var(--sea);
}

.hero-card-loc {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-loc svg {
  width: 16px;
  height: 16px;
  color: var(--coral);
  flex-shrink: 0;
}

/* ================================================================
   MARQUEE
   ================================================================ */

.marquee {
  background: var(--ink);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track em {
  font-family: var(--font-ital);
  font-style: italic;
  color: var(--sun);
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 1.5rem));
  }
}

/* ================================================================
   WHY US (trust grid)
   ================================================================ */

.why {
  background: var(--cream);
  position: relative;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(10, 37, 64, 0.06) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  position: relative;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--sea-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--sea-dark);
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Highlight "Darko speaks German" item */
.why-item--highlight {
  background: linear-gradient(135deg, var(--sun-light), var(--sun));
  border-color: var(--sun);
}

.why-item--highlight .why-icon {
  background: rgba(10, 37, 64, 0.15);
  color: var(--ink);
}

.why-item--highlight h3 {
  color: var(--ink);
}

.why-item--highlight p {
  color: var(--ink);
  opacity: 0.85;
}

/* ================================================================
   FLEET
   ================================================================ */

.fleet {
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  position: relative;
}

.fleet-boat {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: var(--sp-9);
  padding-bottom: var(--sp-9);
  border-bottom: 1px solid var(--line);
}

.fleet-boat:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fleet-boat--reverse {
  grid-template-columns: 1fr 1.1fr;
}

.fleet-boat--reverse .fleet-boat-media {
  order: 2;
}

@media (max-width: 900px) {
  .fleet-boat, .fleet-boat--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .fleet-boat--reverse .fleet-boat-media {
    order: 0;
  }
}

.fleet-boat-media {
  position: relative;
}

.fleet-boat-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fleet-boat-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.fleet-boat-gallery img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--dur) var(--ease);
}

.fleet-boat-gallery img:hover {
  transform: scale(1.05);
}

.fleet-boat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--sun);
  color: var(--ink);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.fleet-boat-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.fleet-boat h3 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fleet-boat h3 em {
  display: block;
  font-family: var(--font-ital);
  font-style: italic;
  color: var(--sea);
  font-size: 0.65em;
  margin-top: 0.25rem;
  font-weight: 400;
}

.fleet-boat-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
  line-height: 1.55;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.fleet-spec {
  background: var(--white);
  padding: 1rem 1.25rem;
}

.fleet-spec-label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
  font-weight: 600;
}

.fleet-spec-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.fleet-equip {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.fleet-equip strong {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 6px;
}

.fleet-prices {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.fleet-prices-title {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.fleet-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}

.fleet-price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fleet-price-row .period {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.fleet-price-row .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
}

.fleet-price-row .price em {
  font-family: var(--font-ital);
  font-style: italic;
  font-size: 0.7em;
  color: var(--ink-soft);
  font-weight: 400;
}

.fleet-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 0.85rem 1rem;
  background: rgba(244, 183, 49, 0.12);
  border-left: 3px solid var(--sun);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

.fleet-note strong {
  color: var(--ink);
}

/* ================================================================
   LOCATIONS
   ================================================================ */

.locations {
  background: var(--sea-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(253, 250, 242, 0.08) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}

.locations .eyebrow {
  color: var(--sun);
}

.locations .eyebrow::before {
  background: var(--sun);
}

.locations h2 {
  color: var(--cream);
}

.locations h2 em {
  color: var(--sun);
}

.locations .lead {
  color: rgba(253, 250, 242, 0.7);
}

.loc-list {
  margin-top: var(--sp-7);
  position: relative;
}

.loc {
  display: grid;
  grid-template-columns: 80px 1.4fr 2fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(253, 250, 242, 0.18);
  align-items: baseline;
  transition: padding var(--dur) var(--ease);
}

.loc:last-child {
  border-bottom: 1px solid rgba(253, 250, 242, 0.18);
}

.loc:hover {
  padding-left: 12px;
}

.loc:hover .loc-name {
  color: var(--sun);
}

@media (max-width: 760px) {
  .loc {
    grid-template-columns: 50px 1fr;
    gap: 0.75rem;
    padding: 1.5rem 0;
  }
  .loc-desc {
    grid-column: 1 / -1;
    padding-left: 66px;
    margin-top: 0.5rem;
  }
}

.loc-num {
  font-family: var(--font-ital);
  font-style: italic;
  font-size: 2rem;
  color: var(--sun);
}

.loc-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
  transition: color var(--dur);
  color: var(--cream);
}

.loc-desc {
  font-size: 0.95rem;
  color: rgba(253, 250, 242, 0.72);
  line-height: 1.55;
}

/* ================================================================
   REVIEWS
   ================================================================ */

.reviews {
  background: var(--sand);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: var(--sp-8);
}

.reviews-header h2 {
  max-width: 600px;
  flex: 1;
}

.reviews-rating {
  text-align: right;
  flex-shrink: 0;
}

.reviews-rating .score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.reviews-rating .stars {
  color: var(--sun-dark);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 0.5rem 0;
}

.reviews-rating .count {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  color: var(--sun-dark);
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sea-pale);
  color: var(--sea-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-meta {
  font-size: 0.78rem;
  line-height: 1.3;
}

.review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.review-meta span {
  color: var(--ink-soft);
}

/* ================================================================
   ABOUT (family story)
   ================================================================ */

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

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

.about-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about h2 {
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-ital);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--coral);
  line-height: 1.3;
}

.about-signature span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ================================================================
   FAQ
   ================================================================ */

.faq {
  background: var(--sea-pale);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-soft);
}

.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  background: none;
  transition: color var(--dur);
}

.faq-q:hover {
  color: var(--sea);
}

.faq-q-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sea-pale);
  color: var(--sea-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--sun);
  color: var(--ink);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}

.faq-item.open .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================================================================
   BOOKING / CONTACT
   ================================================================ */

.contact {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 183, 49, 0.18), transparent 70%);
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 127, 184, 0.2), transparent 70%);
  pointer-events: none;
}

.contact .eyebrow {
  color: var(--sun);
}

.contact .eyebrow::before {
  background: var(--sun);
}

.contact h2 {
  color: var(--cream);
}

.contact h2 em {
  color: var(--sun);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  position: relative;
  margin-top: var(--sp-7);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-intro {
  font-size: 1.05rem;
  color: rgba(253, 250, 242, 0.75);
  max-width: 480px;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(253, 250, 242, 0.15);
  color: var(--cream);
  text-decoration: none;
  transition: padding var(--dur) var(--ease);
}

.contact-method:hover {
  padding-left: 0.5rem;
  color: var(--sun);
}

.contact-method:hover .contact-method-val {
  color: var(--sun);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 250, 242, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur);
}

.contact-method:hover .contact-method-icon {
  background: rgba(244, 183, 49, 0.2);
}

.contact-method-icon svg {
  width: 20px;
  height: 20px;
}

.contact-method-text {
  flex: 1;
}

.contact-method-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 250, 242, 0.5);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  transition: color var(--dur);
}

/* Contact form */
.contact-form {
  background: rgba(253, 250, 242, 0.05);
  border: 1px solid rgba(253, 250, 242, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .contact-form {
    padding: 1.5rem;
  }
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.contact-form h3 em {
  color: var(--sun);
  font-family: var(--font-ital);
  font-style: italic;
  font-weight: 400;
}

.form-row {
  margin-bottom: 1.1rem;
}

.form-row label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 250, 242, 0.65);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(253, 250, 242, 0.06);
  border: 1px solid rgba(253, 250, 242, 0.15);
  color: var(--cream);
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--dur), background var(--dur);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(253, 250, 242, 0.35);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--sun);
  background: rgba(253, 250, 242, 0.08);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-row select option {
  background: var(--ink);
  color: var(--cream);
}

.form-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.form-consent {
  font-size: 0.78rem;
  color: rgba(253, 250, 242, 0.6);
  margin: 1rem 0 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.45;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--sun);
  flex-shrink: 0;
}

.form-consent a {
  color: var(--sun);
  text-decoration: underline;
}

.contact-form button[type="submit"] {
  width: 100%;
  background: var(--sun);
  color: var(--ink);
  padding: 1.1rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--dur) var(--ease);
}

.contact-form button[type="submit"]:hover {
  background: var(--coral);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(229, 107, 74, 0.5);
}

.form-success,
.form-error {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-success.show,
.form-error.show {
  display: block;
}

.form-success {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #7be29e;
}

.form-error {
  background: rgba(229, 107, 74, 0.15);
  border: 1px solid rgba(229, 107, 74, 0.4);
  color: #f4a088;
}

/* ================================================================
   FOOTER
   ================================================================ */

footer {
  background: var(--sea-deep);
  color: rgba(253, 250, 242, 0.65);
  padding: 3rem 0 2rem;
  font-size: 0.88rem;
  border-top: 1px solid rgba(253, 250, 242, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-brand-name em {
  font-family: var(--font-ital);
  font-style: italic;
  color: var(--sun);
}

.footer-quote {
  font-family: var(--font-ital);
  font-style: italic;
  color: rgba(253, 250, 242, 0.7);
  max-width: 340px;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  display: block;
  color: rgba(253, 250, 242, 0.7);
  text-decoration: none;
  padding: 4px 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-col a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 250, 242, 0.1);
  font-size: 0.78rem;
  color: rgba(253, 250, 242, 0.5);
}

/* ================================================================
   WHATSAPP FLOAT BUTTON
   ================================================================ */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform var(--dur) var(--ease);
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.4;
  animation: wa-pulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Phone float button */
.phone-float {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.3);
  z-index: 60;
  transition: transform var(--dur) var(--ease), background var(--dur);
  text-decoration: none;
}

.phone-float:hover {
  transform: scale(1.08);
  background: var(--coral);
  color: var(--cream);
}

.phone-float svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  .wa-float svg {
    width: 26px;
    height: 26px;
  }
  .phone-float {
    bottom: 84px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
  .phone-float svg {
    width: 20px;
    height: 20px;
  }
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 520px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 70;
  display: none;
  font-size: 0.85rem;
  line-height: 1.5;
  border: 1px solid rgba(253, 250, 242, 0.12);
}

.cookie-banner.show {
  display: block;
  animation: slide-up 0.4s var(--ease);
}

@keyframes slide-up {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner p {
  margin-bottom: 1rem;
  color: rgba(253, 250, 242, 0.85);
}

.cookie-banner a {
  color: var(--sun);
  text-decoration: underline;
}

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

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--dur);
}

.cookie-accept {
  background: var(--sun);
  color: var(--ink);
}

.cookie-accept:hover {
  background: var(--sun-dark);
}

.cookie-decline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(253, 250, 242, 0.3);
}

.cookie-decline:hover {
  background: rgba(253, 250, 242, 0.1);
}

/* ================================================================
   MOBILE MENU (full screen)
   ================================================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--cream);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 2rem 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 250, 242, 0.1);
  color: var(--cream);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 400;
}

.mobile-menu-links a:hover {
  color: var(--sun);
}

.mobile-menu-bottom {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(253, 250, 242, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-bottom .lang-switch a {
  color: rgba(253, 250, 242, 0.6);
  font-size: 0.85rem;
}

.mobile-menu-bottom .lang-switch a.active {
  color: var(--sun);
  background: rgba(244, 183, 49, 0.15);
}

/* ================================================================
   BLOG
   ================================================================ */

.blog-hero {
  padding: 140px 0 4rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  text-align: center;
}

.blog-hero h1 {
  max-width: 900px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
}

.blog-meta {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.blog-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.blog-body h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--sea-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.blog-body h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: 1.4rem;
}

.blog-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.blog-body p strong {
  color: var(--ink);
}

.blog-body ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.blog-body ul li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.55;
}

.blog-body ul li::before {
  content: "⚓";
  position: absolute;
  left: 0;
  color: var(--sea);
}

.blog-body ul li strong {
  color: var(--ink);
}

.blog-cta {
  background: var(--sea-pale);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 3rem 0 2rem;
  text-align: center;
  border-left: 4px solid var(--sun);
}

.blog-cta p {
  margin-bottom: 1rem;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .blog-cards {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  color: inherit;
}

.blog-card-media {
  aspect-ratio: 16/10;
  background: var(--sea-pale);
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ================================================================
   LEGAL PAGES (privacy, terms)
   ================================================================ */

.legal {
  padding: 140px 0 4rem;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 0.5rem;
}

.legal .blog-meta {
  margin-bottom: 2.5rem;
}

.legal h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--sea-dark);
}

.legal p,
.legal li {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.legal p {
  margin-bottom: 1rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal ul li {
  margin-bottom: 0.5rem;
}

.legal a {
  color: var(--sea);
  text-decoration: underline;
}

/* ================================================================
   REVEAL ANIMATIONS
   ================================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   UTILITIES
   ================================================================ */

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

.no-scroll {
  overflow: hidden;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* ================================================================
   HERO SLIDESHOW
   ================================================================ */
.hero-slideshow {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

/* ================================================================
   FAQ FIX — larger max-height for long answers
   ================================================================ */
.faq-item.open .faq-a {
  max-height: 2000px;
}

/* ================================================================
   LIGHT BLUE CONTACT SECTION — RGB(188, 228, 250)
   ================================================================ */
.contact {
  background: rgb(188, 228, 250) !important;
  color: var(--ink) !important;
}
.contact .eyebrow,
.contact h2,
.contact h3,
.contact p,
.contact label,
.contact .contact-method,
.contact .contact-method * {
  color: var(--ink) !important;
}
.contact .display em,
.contact h2 em {
  color: #0a5a8a !important;
}
.contact .contact-method {
  background: rgba(255, 255, 255, 0.55) !important;
  border: 1px solid rgba(10, 37, 64, 0.15) !important;
}
.contact .contact-method:hover {
  background: rgba(255, 255, 255, 0.85) !important;
}
.contact input,
.contact textarea,
.contact select {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(10, 37, 64, 0.2) !important;
  color: var(--ink) !important;
}
.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(10, 37, 64, 0.5) !important;
}
.contact .form-error,
.contact .form-success {
  color: var(--ink) !important;
}

/* ================================================================
   BARACUDA GALLERY — 15 images grid with lightbox cursor
   ================================================================ */
.fleet-boat-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.fleet-boat-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.fleet-boat-gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
.fleet-boat-media > img.lightbox-trigger {
  cursor: zoom-in;
}
@media (max-width: 640px) {
  .fleet-boat-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================================================================
   LIGHTBOX — full-screen image viewer
   ================================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 35, 0.96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-content img {
  max-width: 95vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-counter {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10001;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
}
.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}
.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}
body.lightbox-open {
  overflow: hidden;
}
@media (max-width: 640px) {
  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.75rem;
  }
  .lightbox-close { top: 1rem; right: 1rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}

/* ================================================================
   HERO RESTRUCTURE — images prominent, text below
   ================================================================ */

/* Hero becomes pure slideshow section - no text inside */
.hero {
  min-height: 70vh !important;
  padding: 0 !important;
  display: block !important;
}

@media (max-width: 900px) {
  .hero {
    min-height: 55vh !important;
  }
}

/* Remove the dark overlay - images should shine fully */
.hero-bg::after {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(10, 37, 64, 0.15) 100%) !important;
}

/* Hero content section - below slideshow, light background */
.hero-content {
  background: var(--cream);
  padding: 80px 0 100px;
  position: relative;
  color: var(--ink);
}

.hero-content .hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .hero-content {
    padding: 60px 0 80px;
  }
  .hero-content .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 50px 0 70px;
  }
  .hero-content .hero-inner {
    padding: 0 1.25rem;
  }
}

/* Text color fixes for light background */
.hero-content .hero-eyebrow {
  color: var(--sea);
}

.hero-content .hero-eyebrow::before {
  background: var(--sea);
}

.hero-content h1.display {
  color: var(--ink);
}

.hero-content .hero-lead {
  color: var(--ink-soft);
}

.hero-content .hero-lead strong {
  color: var(--sea);
}

/* Badges readable on cream bg */
.hero-content .hero-badge {
  background: rgba(10, 37, 64, 0.06);
  color: var(--ink);
  border: 1px solid rgba(10, 37, 64, 0.12);
}

/* Booking card stays white, already works */
.hero-content .hero-card {
  position: relative;
  top: 0;
}
