/* Sunny Day Charters BVI — private-island register, desk honesty */
:root {
  --ink: #13241f;
  --ink-soft: #1c332c;
  --cream: #f3eee6;
  --cream-deep: #e8e0d2;
  --paper: #faf7f1;
  --sand: #c4a574;
  --sand-deep: #a88858;
  --text: #2c2a26;
  --muted: #6a645a;
  --line: rgba(19, 36, 31, 0.12);
  --whatsapp: #2f6f4e;
  --white: #fff;
  --radius: 2px;
  --shadow: 0 18px 40px rgba(19, 36, 31, 0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--cream);
  font-weight: 400;
  letter-spacing: 0.01em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 90%); margin-inline: auto; }
.hidden { display: none !important; }

h1, h2, h3, .logo-title, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  color: #f4efe6;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1.2rem;
}
.logo-mark { display: flex; align-items: baseline; gap: 0.65rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-title {
  font-size: 1.45rem;
  font-weight: 500;
  color: #f7f3ea;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-subtitle {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.28rem;
}
.nav { display: flex; align-items: center; gap: 0.15rem; flex-wrap: wrap; }
.nav a {
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,234,.78);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav a:hover, .nav a.active {
  color: #fff;
  border-bottom-color: var(--sand);
}
.header-whatsapp {
  background: transparent;
  color: #f7f3ea;
  border: 1px solid var(--sand);
  padding: 0.48rem 1.05rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-whatsapp:hover { background: var(--sand); color: var(--ink); }
.menu-toggle {
  display: none; background: none; border: 0; font-size: 1.35rem;
  cursor: pointer; color: #f7f3ea;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #f7f3ea;
  background: var(--ink) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,24,20,.72) 0%, rgba(12,24,20,.42) 48%, rgba(12,24,20,.18) 100%),
    linear-gradient(180deg, rgba(12,24,20,.28) 0%, rgba(12,24,20,.55) 52%, rgba(12,24,20,.88) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 5.5rem 0 4.2rem;
  width: min(640px, 90%);
  margin-left: 5vw;
  text-align: left;
}
.hero-panel {
  background: rgba(12,24,20,.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.7rem 1.8rem 1.85rem;
  border-radius: 2px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}
.hero-panel h1,
.hero-panel .lead,
.hero-panel .eyebrow {
  text-shadow: 0 1px 18px rgba(0,0,0,.45);
}
.eyebrow {
  display: inline-block;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--sand);
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 1.1rem;
  font-style: italic;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero p.lead {
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 34rem;
  opacity: 0.96;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.hero-ctas, .hero-trust { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-ctas { margin-bottom: 1.6rem; }
.trust-badge {
  border: 1px solid rgba(247,243,234,.28);
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,243,234,.82);
}
.waters {
  display: flex; gap: 0.45rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.waters span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,243,234,.7);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-yellow, .btn-primary {
  background: var(--sand);
  color: var(--ink);
}
.btn-yellow:hover, .btn-primary:hover { background: #d4b98a; }
.btn-whatsapp {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.hero .btn-whatsapp, .page-hero .btn-whatsapp { color: #f7f3ea; border-color: rgba(247,243,234,.55); }
.btn-whatsapp:hover { background: rgba(255,255,255,.08); }
.btn-outline {
  background: transparent;
  color: #f7f3ea;
  border: 1px solid rgba(247,243,234,.55);
}
.btn-outline.dark {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline.dark:hover { background: var(--ink); color: #f7f3ea; }
.btn-sm { padding: 0.58rem 1.1rem; font-size: 0.66rem; }
.btn-full { width: 100%; }

.section { padding: 5.2rem 0; }
.section.alt { background: var(--paper); }
.section-kicker {
  text-align: center;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--sand-deep);
  margin-bottom: 0.7rem;
}
.section-title {
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.section-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.6rem;
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 300;
}

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.section.alt .card { background: #fff; }
.card-img { height: 210px; background-size: cover; background-position: center; }
.card-body { padding: 1.4rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  color: var(--ink);
  font-size: 1.55rem;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.tag {
  font-size: 0.64rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand-deep);
  margin-bottom: 0.35rem;
}
.meta { color: var(--muted); font-size: 0.88rem; margin: 0.15rem 0 0.5rem; }
.price { font-weight: 500; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: 0.04em; }
.card-body p { color: var(--text); font-size: 0.95rem; margin-bottom: 0.75rem; font-weight: 300; }
.card-actions { margin-top: auto; display: flex; gap: 0.5rem; flex-wrap: wrap; }
.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-deep);
  border: 1px solid var(--cream-deep);
  padding: 0.18rem 0.5rem;
  margin-bottom: 0.45rem;
}
.badge.partner { color: #7a5a32; }
.badge.ours { color: #3d5a48; }
.badge.overflow { color: #5a4a6b; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.split img, .split-photo {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
.media-frame {
  position: relative;
  overflow: hidden;
  background: #0c1814;
  min-height: 380px;
}
.media-frame video,
.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-frame img.desk-photo {
  object-position: 18% 40%;
}
.split h2 {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-style: italic;
  margin-bottom: 0.9rem;
  line-height: 1.15;
}
.split p { margin-bottom: 0.85rem; font-weight: 300; }

.destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  justify-content: center;
  margin-top: 0.4rem;
}
.destinations span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.note {
  background: var(--cream-deep);
  border-left: 2px solid var(--sand);
  padding: 1.1rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 300;
  margin: 1.2rem 0;
}
.disclosure {
  background: var(--cream-deep);
  padding: 1.2rem 1.3rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 300;
}

form.brief {
  background: var(--paper);
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font: inherit;
  background: transparent;
  color: var(--text);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-bottom-color: var(--sand-deep);
}
textarea { min-height: 110px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }

.faq details {
  background: var(--paper);
  padding: 1rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line);
}
.faq summary { cursor: pointer; font-weight: 500; color: var(--ink); letter-spacing: 0.04em; }
.faq p { margin-top: 0.5rem; color: var(--muted); font-weight: 300; }

.footer {
  background: var(--ink);
  color: rgba(247,243,234,.72);
  padding: 3.4rem 0 1.6rem;
  margin-top: 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.8rem; margin-bottom: 2rem; }
.footer h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.footer a:hover { color: #fff; }
.footer .fine { font-size: 0.78rem; color: rgba(247,243,234,.48); max-width: 820px; font-weight: 300; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247,243,234,.4);
}

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  background: var(--ink);
  color: #f7f3ea;
  border: 1px solid var(--sand);
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.page-hero {
  position: relative;
  color: #f7f3ea;
  padding: 6.5rem 0 4.2rem;
  text-align: left;
  background: var(--ink) center 40%/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,24,20,.48) 0%, rgba(12,24,20,.78) 100%);
}
.page-hero .container { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1,
.page-hero p { text-shadow: 0 1px 16px rgba(0,0,0,.45); }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-style: italic;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.page-hero p { opacity: 0.9; max-width: 34rem; font-weight: 300; }

.page-hero.days { background-image: url("/media/island-time.jpg"); }
.page-hero.experiences { background-image: url("/media/cove-beach.jpg"); }
.page-hero.weeks { background-image: url("/media/fp44-cove.jpg"); }
.page-hero.overnight { background-image: url("/media/anchorage-sunset.jpg"); }
.page-hero.plan { background-image: url("/media/marina-palm.jpg"); }
.page-hero.waters { background-image: url("/media/long-beach.jpg"); }
.page-hero.inquire { background-image: url("/media/marina-palm.jpg"); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin-top: 2rem;
}
.gallery figure {
  margin: 0;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
}
@media (max-width: 700px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .page-hero.overnight {
    min-height: 78vh;
    padding-top: 5.2rem;
    padding-bottom: 2.4rem;
  }
  .page-hero.overnight video.hero-video { object-position: 50% 78%; }
}
@media (min-width: 701px) {
  .page-hero.overnight { min-height: 62vh; }
  .page-hero.overnight video.hero-video { object-position: 50% 68%; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--ink);
    padding: 0.8rem 1.2rem 1.2rem;
    flex-direction: column;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .menu-toggle { display: block; }
  .header-whatsapp { display: none; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-inner { margin-left: auto; margin-right: auto; width: min(1180px, 90%); }
  .hero { min-height: 78vh; align-items: flex-end; }
}


.page-hero.overnight,
.page-hero.weeks { position: relative; overflow: hidden; }
.page-hero.overnight video.hero-video,
.page-hero.weeks video.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero.overnight video.hero-video { object-position: 50% 72%; }
.page-hero.overnight {
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
}
.page-hero.overnight .container,
.page-hero.weeks .container { position: relative; z-index: 2; }
