/* ============================================================
   ELITE YACHT MIAMI — DESIGN SYSTEM
   Palette:  White #FFFFFF · Pearl #F5FAFC · Baby Blue #A9D3E5
             Deep Blue #6FB3CE · Navy #1C2B39 · Navy Soft #52697A
             Sand #D9C9A0 (used sparingly)
   Type:     Fraunces (display) · Manrope (body/UI)
   Signature: the "wake line" — a single hand-drawn curve that
   stands in for waves throughout the site, instead of literal
   wave clipart or icon soup.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --white: #ffffff;
  --pearl: #f5fafc;
  --baby-tint: #eaf6fb;
  --baby-tint-2: #dcf0f8;
  --baby: #a9d3e5;
  --baby-deep: #6fb3ce;
  --baby-glow: rgba(111, 179, 206, 0.35);
  --navy: #1c2b39;
  --navy-soft: #48606f;
  --sand: #d9c9a0;
  --brand-blue: #0d7ac4;
  --brand-blue-deep: #0a5f9c;
  --navy-blue: #17395c;
  --navy-blue-deep: #0b2036;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --max: 1180px;
  --radius: 18px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 560px) { .wrap { padding: 0 22px; } }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--navy-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-blue);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; color: var(--navy); }

/* ---------- Wake line, the signature element ---------- */
.wake {
  display: block;
  width: 130px;
  height: 18px;
  margin: 18px auto 0;
  stroke: var(--navy-blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.wake.left { margin: 18px 0 0; }
.wake.in-view { stroke-dashoffset: 0; }

.divider-wake {
  width: 100%;
  height: 34px;
  stroke: var(--baby);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  opacity: 0.9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
@media (max-width: 420px) {
  .btn { padding: 13px 20px; font-size: 13.5px; white-space: normal; text-align: center; }
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-deep) 100%);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(23,57,92,0.38), 0 8px 20px rgba(23,57,92,0.22);
  position: relative;
}
.btn-whatsapp::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 rgba(74, 222, 128, 0.6);
  animation: pulse-dot 2.2s infinite;
  flex-shrink: 0;
}
.btn-whatsapp:hover { background: linear-gradient(135deg, var(--navy-blue-deep) 0%, #071628 100%); box-shadow: 0 14px 34px rgba(23,57,92,0.46), 0 10px 22px rgba(23,57,92,0.26); }
.btn-whatsapp svg { width: 18px; height: 18px; flex-shrink: 0; }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13, 122, 196, 0.28);
}
.btn-outline:hover { border-color: var(--navy-blue); background: var(--pearl); color: var(--navy-blue-deep); }

.btn-light {
  background: var(--white);
  color: var(--navy);
}
.btn-light:hover { background: var(--pearl); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 122, 196, 0.16);
  box-shadow: 0 2px 20px rgba(13, 122, 196, 0.06);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: none;
  padding: 0 32px;
}
@media (max-width: 560px) { .site-nav .wrap { padding: 0 22px; } }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  height: 34px;
  width: auto;
  display: block;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--navy-blue-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14.5px;
  font-weight: 600;
}
.nav-links a { opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 26px;
  height: 20px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { position: fixed; top: 88px; left: 0; right: 0; background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 0; padding: 8px 32px 20px;
    border-bottom: 1px solid rgba(28,43,57,0.08); transform: translateY(-8px); opacity: 0;
    pointer-events: none; transition: all 0.25s var(--ease); }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(28,43,57,0.05); }
  .nav-toggle { display: block; }
  .nav-cta .btn-whatsapp span.long { display: none; }
}
@media (max-width: 480px) {
  .site-nav .wrap { height: 74px; padding: 0 16px; }
  .brand { gap: 8px; }
  .brand-icon { height: 22px; }
  .brand-text { font-size: 15px; }
  .nav-links { top: 74px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% -15%, #ffffff 0%, var(--baby-tint-2) 38%, var(--baby) 78%, var(--brand-blue) 130%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.55;
}
.hero-blob.b1 { width: 460px; height: 460px; top: -140px; left: -120px; background: radial-gradient(circle, var(--brand-blue) 0%, transparent 70%); opacity: 0.5; }
.hero-blob.b2 { width: 380px; height: 380px; bottom: -80px; right: -100px; background: radial-gradient(circle, var(--baby-deep) 0%, transparent 70%); opacity: 0.4; }
.hero-ocean {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 45%, rgba(13,122,196,0.28) 100%);
}
.hero-ocean svg { position: absolute; bottom: -2px; left: 0; width: 100%; height: auto; }
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 0 24px; }
.hero .eyebrow {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(23,57,92,0.3);
  padding: 7px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 16px rgba(23,57,92,0.12);
  color: var(--navy-blue-deep);
}
.hero .eyebrow { display: block; margin-bottom: 16px; }
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.hero p.tagline {
  margin-top: 18px;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--navy-soft);
  font-weight: 500;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 560px) {
  .hero { padding: 32px 0 22px; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero p.tagline { margin-top: 12px; }
  .hero-actions { margin-top: 22px; flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn { justify-content: center; }
}
/* Extra-short phone screens (older/smaller devices) — compact further so
   the collection still peeks in without scrolling. */
@media (max-width: 560px) and (max-height: 700px) {
  .site-nav .wrap { height: 64px; }
  .hero { padding: 16px 0 14px; }
  .hero .eyebrow { padding: 5px 14px; font-size: 11.5px; margin-bottom: 8px; }
  .hero h1 { font-size: 28px; }
  .hero .wake { margin-top: 6px; }
  .hero p.tagline { margin-top: 6px; font-size: 14.5px; }
  .hero-actions { margin-top: 14px; }
  .hero-actions .btn { padding: 11px 20px; }
  .hero-actions .btn-outline { display: none; }
}

/* ---------- Photo hero (full-bleed image + dark overlay) ---------- */
.hero-photo {
  padding: 0;
  min-height: 640px;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  background: var(--navy);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 22% 42%;
  z-index: 0;
}
.hero-photo-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,20,32,0.92) 0%, rgba(8,20,32,0.78) 38%, rgba(8,20,32,0.4) 62%, rgba(8,20,32,0.08) 88%),
    linear-gradient(0deg, rgba(8,20,32,0.55) 0%, transparent 40%);
}
.hero-inner-left {
  max-width: 540px;
  padding: 64px 24px 60px;
  text-align: left;
}
.eyebrow-light {
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.32);
  display: inline-block;
  padding: 7px 18px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-photo-title {
  color: var(--white);
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-top: 18px;
  max-width: 11ch;
}
.wake-left { margin: 16px 0 0; }
.tagline-light {
  color: rgba(255,255,255,0.78) !important;
  margin-top: 20px;
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
  font-weight: 600;
  max-width: 40ch;
  text-shadow: 0 2px 14px rgba(0,0,0,0.65);
}
.hero-actions-left { justify-content: flex-start; margin-top: 32px; }
.hero-actions-left .btn {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 13.5px;
  padding: 17px 32px;
}
.btn-hero-primary {
  background: var(--white) !important;
  color: var(--navy) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22) !important;
}
.btn-hero-primary:hover { background: var(--pearl) !important; }
.btn-hero-call {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  border-color: transparent;
}
.btn-hero-call:hover { background: var(--pearl); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.14); border-color: var(--white); }
@media (max-width: 760px) {
  .hero-photo { min-height: 560px; }
  .hero-inner-left { padding: 110px 20px 56px; max-width: 100%; }
  .hero-photo-title { max-width: 100%; }
}
@media (max-width: 560px) {
  .hero-photo { min-height: 92vh; min-height: 92svh; }
  .hero-inner-left { padding: 100px 20px 48px; }
  .hero-actions-left { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-actions-left .btn { justify-content: center; }
  .hero-photo-overlay {
    background:
      linear-gradient(180deg, rgba(8,20,32,0.35) 0%, rgba(8,20,32,0.55) 38%, rgba(8,20,32,0.86) 68%, rgba(8,20,32,0.92) 100%);
  }
}
@media (max-width: 560px) and (max-height: 700px) {
  .hero-photo { min-height: 100vh; min-height: 100svh; padding-bottom: 0; }
  .hero-inner-left { padding: 90px 20px 40px; }
}

/* ---------- Sections ---------- */
section { padding: 108px 0; }
@media (max-width: 860px) { section { padding: 76px 0; } }
@media (max-width: 560px) { section { padding: 60px 0; } }
/* The yacht collection sits right under a compact hero, so it needs less
   top breathing room than other sections — the first yacht should be
   visible without scrolling past an empty gap. */
#collection { padding-top: 40px; }
@media (max-width: 860px) { #collection { padding-top: 32px; } }
@media (max-width: 560px) { #collection { padding-top: 20px; } }
@media (max-width: 560px) and (max-height: 700px) { #collection { padding-top: 14px; } }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
@media (max-width: 560px) { .section-head { margin-bottom: 40px; } }
#collection .section-head { margin-bottom: 40px; }
@media (max-width: 560px) { #collection .section-head { margin-bottom: 20px; } }
@media (max-width: 560px) and (max-height: 700px) { #collection .section-head { margin-bottom: 14px; } }
#collection .section-head p { display: none; }
@media (min-width: 561px) { #collection .section-head p { display: block; } }
.section-head h2 { font-size: clamp(30px, 4vw, 42px); margin-top: 14px; }
@media (max-width: 560px) and (max-height: 700px) { .section-head h2 { font-size: 26px; margin-top: 10px; } }
.section-head p { margin-top: 16px; color: var(--navy-soft); font-size: 16.5px; }

.bg-pearl { background: var(--pearl); }
.bg-baby-tint { background: linear-gradient(180deg, var(--baby-tint) 0%, var(--white) 100%); }

/* ---------- Yacht collection grid (side-by-side cards) ---------- */
.lookbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 1080px) { .lookbook { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 680px) { .lookbook { grid-template-columns: 1fr; gap: 26px; } }

.link-more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.link-more svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.link-more:hover svg { transform: translateX(3px); }

.star-row { display: inline-flex; align-items: center; gap: 2px; color: #f0ac30; }
.star-row svg { width: 14px; height: 14px; flex-shrink: 0; }
.star-row-label { margin-left: 6px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600; color: var(--navy-soft); }

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28,43,57,0.07);
  box-shadow: 0 14px 36px rgba(28,43,57,0.07);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  cursor: pointer;
}
.cc-card-link { position: absolute; inset: 0; z-index: 1; }
.collection-card.in-view { opacity: 1; transform: translateY(0); }
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(111,179,206,0.32);
  border-color: var(--baby-deep);
}

.cc-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(150deg, var(--baby-tint) 0%, var(--baby) 70%, var(--baby-deep) 100%);
}
.cc-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.collection-card:hover .cc-media img { transform: scale(1.07); }
.cc-media svg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%; opacity: 0.5; color: var(--white);
}
.cc-media.has-photo { background: var(--pearl); }

.cc-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.cc-body h3 { margin-top: 10px; font-size: 25px; }
.cc-body h3 a { transition: color 0.2s; color: var(--navy-blue-deep); }
.cc-body h3 a:hover { color: var(--baby-deep); }
.cc-size { color: var(--navy-blue); }
.cc-tagline { margin-top: 6px; color: var(--navy-soft); font-size: 14px; line-height: 1.5; }

.cc-bullets { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.cc-bullets li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--navy); }
.cc-bullets li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--navy-blue); }

.cc-price-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cc-price-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pearl); border: 1px solid rgba(13,122,196,0.14);
  padding: 7px 13px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600; color: var(--navy);
}
.cc-price-pill svg { width: 14px; height: 14px; color: var(--navy-blue); flex-shrink: 0; }

.cc-footer {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(28,43,57,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cc-price { display: flex; flex-direction: column; line-height: 1.15; }
.cc-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy-soft); font-weight: 700; }
.cc-price-value { font-family: var(--font-display); font-size: 18px; color: var(--navy); }
.cc-book-btn { position: relative; z-index: 2; margin-top: 16px; width: 100%; justify-content: center; }

/* ---------- Why Elite ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 40px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

.why-item { text-align: left; }
.why-item h3 { font-size: 21px; letter-spacing: 0.01em; }
.why-item p { margin-top: 12px; color: var(--navy-soft); font-size: 16px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(111,179,206,0.22);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle { flex-shrink: 0; color: var(--baby-deep); transition: transform 0.3s var(--ease); }
.faq-toggle svg { width: 16px; height: 16px; transform: rotate(90deg); }
.faq-item[open] .faq-toggle svg { transform: rotate(-90deg); }
.faq-item p { padding: 0 0 22px; color: var(--navy-soft); font-size: 15px; max-width: 62ch; line-height: 1.6; }
.faq-item ul {
  list-style: none;
  margin: 0;
  padding: 0 0 22px;
  display: grid;
  gap: 10px;
  max-width: 62ch;
}
.faq-item ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}
.faq-item ul li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--navy-blue); }

/* ---------- Yacht cards / grid ---------- */
.yacht-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 940px) { .yacht-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .yacht-grid { grid-template-columns: 1fr; } }

.yacht-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(111,179,206,0.18);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: block;
}
.yacht-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(111,179,206,0.28); border-color: var(--baby-deep); }
.yacht-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--baby-tint) 0%, var(--baby) 75%, var(--baby-deep) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.yacht-photo::after {
  content: "";
  position: absolute; inset: -20% -20% auto -20%; height: 60%;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
}
.yacht-photo svg { width: 44%; opacity: 0.55; }
.yacht-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yacht-photo.has-photo::after { display: none; }
.yacht-photo.has-photo { background: var(--pearl); }
.yacht-card-body { padding: 20px 22px 24px; }
.yacht-card-body h3 { font-size: 20px; }
.yacht-card-body .meta { margin-top: 6px; color: var(--navy-soft); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.03em; }

/* ---------- Photo placeholder icon (shared) ---------- */
.ph-icon { color: var(--navy); }

/* ---------- About ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; gap: 40px; } }
.about-copy h2 { font-size: clamp(28px, 3.6vw, 38px); margin-top: 14px; }
.about-copy p { margin-top: 20px; color: var(--navy-soft); font-size: 16.5px; max-width: 46ch; }
.about-visual {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--baby) 0%, var(--baby-deep) 60%, #3f7f95 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(28,43,57,0.18);
}
.about-visual svg { position: absolute; }
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
  .about-copy .hero-actions { max-width: none; margin-left: 0; margin-right: 0; align-items: flex-start; }
  .about-copy .hero-actions .btn { width: auto; }
}

/* ---------- Instagram ---------- */
.ig-band { text-align: center; }
.ig-band .eyebrow { display: block; }
.ig-band h2 { margin-top: 14px; }
.ig-handle {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 16px;
  padding: 12px 22px; border-radius: 999px; border: 1px solid rgba(28,43,57,0.14);
  transition: border-color 0.2s, background 0.2s;
}
.ig-handle:hover { border-color: var(--baby-deep); background: var(--pearl); }
.ig-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 760px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
.ig-tile {
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--baby-tint), var(--baby) 70%, var(--baby-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ig-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 34px rgba(28,43,57,0.2); }
.ig-tile svg { width: 34%; opacity: 0.55; color: var(--white); }
.ig-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(8,20,32,0);
  transition: background 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.ig-tile:hover .ig-tile-overlay { background: rgba(8,20,32,0.18); }
.ig-tile-overlay svg { width: 26px; height: 26px; opacity: 0; transition: opacity 0.3s var(--ease); color: var(--white); }
.ig-tile:hover .ig-tile-overlay svg { opacity: 1; }

/* ---------- Footer ---------- */
footer { background: linear-gradient(160deg, #1c3f66 0%, #0d2036 100%); color: rgba(255,255,255,0.86); padding: 64px 0 32px;
  border-top: 3px solid; border-image: linear-gradient(90deg, var(--baby-tint), var(--baby-deep), var(--baby-tint)) 1; }
.footer-top {
  display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; }
.footer-icon { height: 30px; width: auto; display: block; }
.footer-brand-text { font-family: var(--font-display); font-size: 21px; color: var(--white); }
.footer-tag { margin-top: 14px; color: rgba(255,255,255,0.74); font-size: 14.5px; max-width: 34ch; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
@media (max-width: 560px) { .footer-links { gap: 36px; } }
.footer-col h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--baby);
  font-weight: 700; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: rgba(255,255,255,0.85);
  margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.58);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-right: 0; }
@media (min-width: 641px) { .footer-bottom { padding-right: 210px; } }

/* ---------- Floating WhatsApp button ---------- */
.fab-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 12px 30px rgba(28,43,57,0.3);
  transition: transform 0.25s var(--ease), background 0.2s;
}
.fab-whatsapp:hover { transform: translateY(-3px); background: #223447; }
.fab-whatsapp svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .fab-whatsapp { right: 14px; bottom: 14px; padding: 14px 18px; }
  .fab-whatsapp .fab-text { display: none; }
}

/* ---------- Page header (category / detail pages) ---------- */
.page-header { padding: 168px 0 64px; text-align: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--baby-tint) 0%, var(--pearl) 70%); }
.page-header .eyebrow { display: block; margin-bottom: 14px; }
.page-header h1 { font-size: clamp(32px, 4.6vw, 50px); }
.page-header p { margin-top: 16px; color: var(--navy-soft); max-width: 52ch; margin-left: auto; margin-right: auto; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; font-size: 13.5px; font-weight: 600;
  color: var(--navy-soft); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--baby-deep); }

.cat-tabs { display: flex; justify-content: center; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.cat-tab {
  padding: 10px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 700;
  border: 1px solid rgba(28,43,57,0.14); color: var(--navy-soft);
  transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--baby-deep); color: var(--navy); }
.cat-tab.active { background: var(--navy); border-color: var(--navy); color: var(--white); }


/* ---------- Yacht detail page ---------- */
.detail-layout {
  display: grid;
  grid-template-columns: 1.85fr 0.75fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 940px) { .detail-layout { grid-template-columns: 1fr; } }

.gallery-main {
  aspect-ratio: 3/2;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--pearl), var(--baby) 70%, var(--baby-deep));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 48px rgba(28,43,57,0.14);
}
.gallery-main svg { width: 26%; opacity: 0.55; }
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-main.has-photo { background: var(--pearl); }
.gallery-main-zoom-hint {
  position: absolute; bottom: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(28,43,57,0.65); color: var(--white);
  padding: 9px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.02em;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.gallery-main-zoom-hint svg { position: static; width: 15px; height: 15px; opacity: 1; }
.gallery-main:hover .gallery-main-zoom-hint { opacity: 1; transform: translateY(0); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }
.gallery-thumb {
  aspect-ratio: 1/1; border-radius: 12px;
  background: linear-gradient(150deg, var(--pearl), var(--baby));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.gallery-thumb:hover { transform: translateY(-2px); border-color: var(--baby-deep); }
.gallery-thumb svg { width: 40%; opacity: 0.5; }
.gallery-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.has-photo { background: var(--pearl); }

.detail-info h1 { font-size: clamp(30px, 3.6vw, 40px); }
.detail-meta { display: flex; gap: 26px; margin-top: 18px; flex-wrap: wrap; }
.detail-meta .item { font-size: 14.5px; }
.detail-meta .item strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.detail-meta .item span { color: var(--navy-soft); font-weight: 600; letter-spacing: 0.02em; }

.detail-desc { margin-top: 26px; color: var(--navy-soft); font-size: 16px; max-width: 56ch; }

.amenities { margin-top: 30px; }
.amenities h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--navy); }
.amenities ul { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.amenities li { font-size: 14.5px; color: var(--navy-soft); display: flex; align-items: center; gap: 8px; }
.amenities li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--baby-deep); flex-shrink: 0; }
@media (max-width: 620px) {
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}
@media (max-width: 480px) {
  .amenities ul { grid-template-columns: 1fr; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

/* ---------- Lightbox (click main photo or thumbnail to view full size) ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,16,22,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease);
  padding: 40px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-frame { position: relative; max-width: min(1400px, 92vw); max-height: 88vh; width: 100%; }
.lightbox-frame img {
  display: block; width: 100%; height: 88vh; max-height: 88vh;
  object-fit: contain; border-radius: 10px;
}
.lightbox-counter {
  position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.24); }
.lightbox-close { top: -52px; right: 0; width: 40px; height: 40px; }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-prev { left: -20px; }
.lightbox-next { right: -20px; }
.lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
@media (max-width: 780px) {
  .lightbox { padding: 20px; }
  .lightbox-frame img { height: 70vh; max-height: 70vh; }
  .lightbox-close { top: -46px; right: 0; width: 36px; height: 36px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; background: rgba(255,255,255,0.16); }
}

.price-box {
  margin-top: 34px;
  padding: 26px 26px 24px;
  border-radius: var(--radius-sm);
  background: var(--pearl);
  border: 1px solid rgba(28,43,57,0.06);
}
.price-box .price { font-family: var(--font-display); font-size: 26px; }
.price-box-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.price-box .btn-whatsapp { margin-top: 18px; width: 100%; justify-content: center; }
.price-box p.note { margin-top: 12px; font-size: 13px; color: var(--navy-soft); text-align: center; }

.related-heading { margin: 90px 0 30px; }

/* ---------- Contact strip (bottom CTA, used site-wide) ---------- */
.cta-strip {
  background: linear-gradient(135deg, #1c3f66 0%, #0d2036 100%);
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.cta-strip .eyebrow { color: var(--baby); }
.cta-strip h2 { color: var(--white); margin-top: 14px; font-size: clamp(28px, 4vw, 40px); }
.cta-strip p { margin-top: 14px; color: rgba(255,255,255,0.82); }
.cta-strip .hero-actions { margin-top: 34px; }
.cta-strip .btn-whatsapp {
  background: var(--white);
  color: var(--navy);
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}
.cta-strip .btn-whatsapp:hover { background: var(--pearl); }
.cta-strip .btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}
.cta-strip .btn-outline:hover { background: var(--pearl); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
