@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..800;1,9..144,400..700&family=DM+Sans:ital,opsz,wght@0,9..40,300..600;1,9..40,300..400&display=swap');

:root {
  --navy:       #0b1f33;
  --ocean:      #0c3d5e;
  --teal:       #0d9488;
  --teal-dark:  #0a7a6e;
  --seafoam:    #ccfbf1;
  --foam-pale:  #f0fdf9;
  --cream:      #faf8f5;
  --sand:       #f2ede6;
  --text:       #1a2f42;
  --muted:      #5b7082;
  --light:      #8fa8b8;
  --border:     #dde6ee;
  --white:      #ffffff;
  --shadow-sm:  0 1px 4px rgba(11,31,51,.06);
  --shadow:     0 4px 24px rgba(11,31,51,.10);
  --shadow-lg:  0 12px 40px rgba(11,31,51,.14);
  --r:          12px;
  --r-sm:       8px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.15rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .97rem;
  text-decoration: none;
  transition: all .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: white; }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,148,136,.3); }
.btn-outline-light { background: transparent; color: white; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8); }
.btn-white { background: white; color: var(--teal-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.14); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: white; }

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a { font-size: .87rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--teal); }
.nav-cta { padding: .48rem 1.1rem !important; background: var(--teal); color: white !important; border-radius: 50px; font-weight: 600 !important; font-size: .85rem !important; transition: background .15s !important; }
.nav-cta:hover { background: var(--teal-dark) !important; color: white !important; }
.nav-mobile-book { display: none; font-size: .85rem; padding: .5rem 1rem; }
@media (max-width: 780px) { .nav-links { display: none; } .nav-mobile-book { display: inline-flex; } }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem 5rem;
  background: linear-gradient(160deg, #0b1f33 0%, #0c3d5e 40%, #0a7a6e 80%, #0d9488 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
.hero-inner { max-width: 1140px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero .eyebrow { color: #5eead4; margin-bottom: 1rem; }
.hero h1 { max-width: 820px; margin-bottom: 1.5rem; font-style: italic; }
.hero h1 em { font-style: normal; color: #5eead4; }
.hero-lead { max-width: 560px; font-size: 1.1rem; opacity: .88; margin-bottom: 2.5rem; line-height: 1.75; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 4rem; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  width: fit-content;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r);
  overflow: hidden;
}
.hero-stat { padding: 1.1rem 1.75rem; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.hero-stat:last-child { border-right: none; }
.hero-stat-value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: white; line-height: 1; }
.hero-stat-label { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .1em; text-transform: uppercase; margin-top: .35rem; }
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); width: 100%; }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .hero-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ── PAGE STRUCTURE ── */
.section { padding: 5.5rem 1.5rem; }
.section-cream  { background: var(--cream); }
.section-white  { background: var(--white); }
.section-foam   { background: var(--foam-pale); }
.section-sand   { background: var(--sand); }
.container { max-width: 1140px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin: .5rem 0 .75rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 580px; line-height: 1.75; }

/* ── THE BOAT ── */
.boat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.boat-description { font-size: 1.05rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.75rem; }
.spec-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.spec-list li { font-size: .95rem; display: flex; align-items: flex-start; gap: .8rem; padding-bottom: .8rem; border-bottom: 1px solid var(--border); }
.spec-list li:last-child { border-bottom: none; padding-bottom: 0; }
.spec-check { width: 22px; height: 22px; border-radius: 50%; background: var(--seafoam); display: flex; align-items: center; justify-content: center; color: var(--teal-dark); font-size: .7rem; font-weight: 800; flex-shrink: 0; margin-top: .1rem; }
.photo-frame {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  background: linear-gradient(145deg, var(--ocean) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  gap: .75rem;
  text-align: center;
  padding: 2rem;
}
.photo-frame-icon { font-size: 3.5rem; }
.photo-frame strong { display: block; color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: .25rem; }
@media (max-width: 768px) { .boat-layout { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ── PRICING ── */
.price-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; margin-bottom: 1.75rem; }
.price-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 1.5rem 1rem; text-align: center; position: relative; transition: border-color .15s, transform .15s, box-shadow .15s; }
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }
.price-card.featured { border-color: var(--teal); background: var(--foam-pale); transform: scale(1.04); box-shadow: var(--shadow); }
.featured-tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .22rem .7rem; border-radius: 50px; white-space: nowrap; }
.price-hrs { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.price-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-num sup { font-size: 1rem; vertical-align: super; }
.price-sub { font-size: .72rem; color: var(--light); margin-top: .35rem; }
.price-notes { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.25rem 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem 2.5rem; }
.price-note { font-size: .87rem; color: var(--muted); display: flex; align-items: center; gap: .45rem; }
@media (max-width: 900px) { .price-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }

/* ── AMENITIES ── */
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: .85rem; margin-bottom: 2.5rem; }
.amenity-tile { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.25rem; display: flex; align-items: center; gap: .85rem; font-size: .92rem; font-weight: 500; transition: border-color .15s; }
.amenity-tile:hover { border-color: var(--teal); }
.amenity-tile .icon { font-size: 1.4rem; flex-shrink: 0; }
.addon-label { font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.addon-cards { display: flex; flex-wrap: wrap; gap: .85rem; }
.addon-card { background: var(--white); border: 1.5px solid var(--seafoam); border-radius: var(--r); padding: 1.1rem 1.5rem; }
.addon-card-name { font-weight: 600; font-size: .97rem; margin-bottom: .2rem; }
.addon-card-price { font-size: .85rem; color: var(--teal-dark); }

/* ── LOCATIONS ── */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.location-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.location-header { background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%); padding: 1.35rem 1.5rem; color: white; }
.location-header h3 { color: white; font-size: 1.05rem; margin-bottom: .2rem; }
.location-header p { font-size: .8rem; opacity: .7; }
.location-ramps { list-style: none; padding: 1.25rem 1.5rem; display: flex; flex-direction: column; gap: .65rem; }
.location-ramps li { font-size: .9rem; color: var(--muted); display: flex; align-items: flex-start; gap: .6rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.location-ramps li:last-child { border-bottom: none; padding-bottom: 0; }
.location-ramps li::before { content: '⚓'; font-size: .75rem; margin-top: .15rem; flex-shrink: 0; }
.location-callout { background: var(--foam-pale); border: 1px solid var(--seafoam); border-left: 3px solid var(--teal); border-radius: var(--r-sm); padding: 1rem 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.65; }
.location-callout a { color: var(--teal); font-weight: 600; text-decoration: none; }
.location-callout a:hover { text-decoration: underline; }
@media (max-width: 640px) { .locations-grid { grid-template-columns: 1fr; } }

/* ── ABOUT ── */
.about-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 3rem; display: grid; grid-template-columns: 220px 1fr; gap: 4rem; align-items: start; }
.team-list { display: flex; flex-direction: column; gap: .85rem; }
.team-member { display: flex; align-items: center; gap: .85rem; }
.team-initial { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--ocean), var(--teal)); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.team-name { font-weight: 600; font-size: .97rem; }
.about-text { font-size: 1.05rem; line-height: 1.85; color: var(--muted); }
.about-text p + p { margin-top: 1rem; }
@media (max-width: 640px) { .about-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; } }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.75rem; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; transition: box-shadow .2s; }
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: .1em; }
.review-quote { font-family: var(--font-display); font-size: 1rem; line-height: 1.7; color: var(--text); font-style: italic; flex: 1; }
.review-author { font-weight: 700; font-size: .87rem; }
.review-source { font-size: .78rem; color: var(--light); margin-top: .15rem; }
.reviews-summary { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--muted); }
.reviews-summary .stars { color: #f59e0b; }
@media (max-width: 768px) { .review-grid { grid-template-columns: 1fr; } }

/* ── POLICIES ── */
.policies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.policy-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.5rem 1.75rem; }
.policy-card h3 { font-family: var(--font-body); font-size: .92rem; font-weight: 700; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.policy-items { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.policy-items li { font-size: .9rem; color: var(--muted); display: flex; align-items: flex-start; gap: .6rem; padding-bottom: .7rem; border-bottom: 1px solid var(--border); line-height: 1.55; }
.policy-items li:last-child { border-bottom: none; padding-bottom: 0; }
.policy-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: .55rem; }
@media (max-width: 640px) { .policies-grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq-items { display: flex; flex-direction: column; gap: .5rem; }
details { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
details[open] { border-color: var(--teal); }
summary { padding: 1.15rem 1.5rem; font-weight: 600; font-size: .96rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; color: var(--text); transition: color .15s; }
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--teal); }
.summary-arrow { width: 24px; height: 24px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; transition: background .15s, transform .2s; color: var(--muted); font-style: normal; }
details[open] .summary-arrow { background: var(--seafoam); color: var(--teal-dark); transform: rotate(45deg); }
.faq-body { padding: 1rem 1.5rem 1.35rem; font-size: .93rem; line-height: 1.75; color: var(--muted); border-top: 1px solid var(--border); }

/* ── CTA SECTION ── */
.cta-section { padding: 6rem 1.5rem; background: linear-gradient(160deg, var(--navy) 0%, var(--ocean) 50%, var(--teal-dark) 100%); color: white; text-align: center; }
.cta-section .eyebrow { color: #5eead4; margin-bottom: 1rem; }
.cta-section h2 { color: white; margin-bottom: 1rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-section p { opacity: .8; max-width: 560px; margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.75; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ── FOOTER ── */
.footer { padding: 2rem 1.5rem; background: #071525; color: rgba(255,255,255,.4); font-size: .83rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
