:root {
  --navy: #0b1c2c;
  --navy-2: #10263a;
  --gold: #c9a24b;
  --gold-light: #e0c37e;
  --ink: #1c2733;
  --muted: #5c6b7a;
  --paper: #f7f5f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(11, 28, 44, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow { max-width: 780px; }

.section { padding: 5.5rem 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.eyebrow-gold { color: var(--gold-light); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 28, 44, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.brand span { color: var(--gold-light); font-size: 0.95rem; }

.nav { display: flex; gap: 1.4rem; }

.nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover { color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}

.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 162, 75, 0.4); }

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-wide { width: 100%; padding: 1rem; font-size: 1.05rem; }

.header-cta { padding: 0.6rem 1.5rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--navy-2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 28, 44, 0.55) 0%, rgba(11, 28, 44, 0.35) 50%, rgba(11, 28, 44, 0.75) 100%);
}

.hero-content { position: relative; padding-top: 4rem; padding-bottom: 4rem; }

.lede {
  font-size: 1.15rem;
  max-width: 34rem;
  margin: 1.25rem 0 2rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Boat */
.boat-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1.5rem;
}

.boat-text p { margin-bottom: 1rem; color: var(--muted); }

.spec-list { list-style: none; margin-top: 1.5rem; }

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(28, 39, 51, 0.1);
  font-size: 0.95rem;
}

.spec-list span { color: var(--muted); }

.boat-photos { display: grid; gap: 1rem; }

.boat-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--navy-2);
}

.boat-photos figcaption { font-size: 0.8rem; color: var(--muted); }

/* Dark sections */
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark h2 { color: var(--white); }

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.price-card {
  background: var(--navy-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.price-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.price-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }

.price-card h3 small {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-left: 0.4rem;
}

.price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.price span { font-size: 1.1rem; color: rgba(255, 255, 255, 0.7); }

.price-card ul { list-style: none; }

.price-card li {
  padding: 0.4rem 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.extra h4 { color: var(--gold-light); margin-bottom: 0.4rem; font-size: 1rem; }

.extra p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.8); }

.price-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Destinations */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.dest-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--navy-2);
}

.dest-body { padding: 1.2rem 1.3rem 1.5rem; }

.dest-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }

.dest-body p { font-size: 0.9rem; color: var(--muted); }

/* Coming 2027 */
.section-coming {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3550 100%);
  color: var(--white);
}

.coming-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coming-text p { margin-bottom: 1rem; color: rgba(255, 255, 255, 0.88); }

.coming-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.coming-img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: var(--navy-2);
}

/* FAQ */
.faq {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 1rem;
  padding: 1.1rem 1.4rem;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--gold);
}

.faq[open] summary::after { content: '−'; }

.faq p { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; }

/* Form */
.form-intro { color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; }

#booking-form { display: grid; gap: 1.2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.field { display: grid; gap: 0.35rem; }

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--navy-2);
  color: var(--white);
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.4); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: transparent;
}

.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }

.form-error {
  color: #ffb3a7;
  font-size: 0.92rem;
  white-space: pre-line;
}

.form-privacy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 3rem 1rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--navy-2);
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: #081420;
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-grid h4 { color: var(--white); margin-bottom: 0.6rem; }

.footer-grid p { margin-bottom: 0.5rem; }

.footer-grid a { color: var(--gold-light); text-decoration: none; }

.footer-grid a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .boat-grid,
  .coming-inner { grid-template-columns: 1fr; }
  .price-grid,
  .price-extras { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .nav { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}
