/* Go Boating Vegas — site stylesheet */
:root {
  --navy: #1b2431;
  --navy-2: #323e51;
  --blue: #244b87;
  --orange: #f77e12;
  --orange-2: #e06f0b;
  --sand: #f6f3ee;
  --ink: #26303d;
  --muted: #5f6b7a;
  --line: #e4e0d8;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 30, 45, .12);
  --font-head: 'Jost', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--sand);
  font-size: 16px; line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: var(--navy); letter-spacing: .01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.wrap { width: min(1140px, 100% - 40px); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - 40px); margin-inline: auto; }
.eyebrow { font-family: var(--font-head); font-weight: 500; letter-spacing: .22em; text-transform: uppercase; font-size: .8rem; color: var(--orange); margin-bottom: .6rem; display: block; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  font-size: .85rem; padding: .9rem 1.6rem; border-radius: 999px; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease; line-height: 1.1;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-2); border-color: var(--orange-2); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-dark:hover { background: var(--navy-2); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 20; padding: 1rem 0; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand img { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { color: #fff; text-decoration: none; font-family: var(--font-head); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; opacity: .92; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; color: var(--orange); }
.nav .btn { padding: .6rem 1.2rem; font-size: .75rem; }
.nav-toggle { display: none; }
.nav-burger { display: none; width: 44px; height: 44px; border: 0; background: rgba(0,0,0,.25); border-radius: 10px; cursor: pointer; padding: 10px; }
.nav-burger span { display: block; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
@media (max-width: 860px) {
  .nav { position: fixed; inset: 0; background: rgba(27,36,49,.97); flex-direction: column; justify-content: center; gap: 2rem; transform: translateX(100%); transition: transform .25s ease; }
  .nav a { font-size: 1.15rem; }
  .nav-toggle:checked ~ .nav { transform: none; }
  .nav-burger { display: block; position: relative; z-index: 30; }
  .brand { position: relative; z-index: 30; }
  .brand img { height: 46px; }
}

/* Hero */
.hero { position: relative; min-height: min(78vh, 780px); display: grid; place-items: center; color: #fff; text-align: center; padding: 8rem 0 5rem; background: var(--navy) center/cover no-repeat; isolation: isolate; }
.hero.small { min-height: min(52vh, 520px); padding: 8rem 0 4rem; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,40,.55) 0%, rgba(20,28,40,.35) 45%, rgba(27,36,49,.85) 100%); z-index: -1; }
.hero h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,.35); }
.hero .lead { font-size: 1.1rem; max-width: 640px; margin: 0 auto 1.6rem; opacity: .95; }
.hero .btn-row { justify-content: center; }
.hero .eyebrow { color: #ffd2a8; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-dark { background: var(--navy); color: #d9dee6; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 680px; margin: 0 auto 2.4rem; text-align: center; }
.section-head p { color: var(--muted); }
.section-dark .section-head p { color: #b8c1cd; }

/* Cards */
.grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-fleet { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); max-width: 1140px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: transform .2s ease; }
a.card:hover { transform: translateY(-4px); }
.card-img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.card-body h3 { margin: 0; text-transform: uppercase; font-size: 1.15rem; }
.card-body .meta { font-size: .85rem; color: var(--muted); }
.card-body .more { margin-top: auto; padding-top: .6rem; font-family: var(--font-head); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .75rem; color: var(--orange); }

/* Discover bands */
.band { position: relative; color: #fff; padding: 6rem 0; background: var(--navy-2) center/cover no-repeat; isolation: isolate; }
.band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,28,40,.88) 0%, rgba(20,28,40,.55) 60%, rgba(20,28,40,.25) 100%); z-index: -1; }
.band.right::before { background: linear-gradient(270deg, rgba(20,28,40,.88) 0%, rgba(20,28,40,.55) 60%, rgba(20,28,40,.25) 100%); }
.band .inner { max-width: 560px; }
.band.right .inner { margin-left: auto; text-align: right; }
.band.right .btn-row { justify-content: flex-end; }
.band h2 { color: #fff; }
.band p { color: #dfe4eb; }

/* Activities */
.activities { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); text-align: center; }
.activities img { width: 96px; height: 96px; margin: 0 auto .6rem; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow); }
.activities span { font-family: var(--font-head); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; color: var(--navy); }
.section-dark .activities span { color: #fff; }

/* Reviews */
.reviews { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.review { background: #fff; border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow); position: relative; }
.review::before { content: "\201C"; position: absolute; top: .3rem; left: 1.1rem; font-family: Georgia, serif; font-size: 4rem; color: var(--orange); opacity: .35; line-height: 1; }
.review p { font-size: .95rem; margin-top: .8rem; }
.review .who { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 600; font-size: .9rem; }
.review .who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review .who small { display: block; font-weight: 400; color: var(--muted); }
.stars { color: var(--orange); letter-spacing: .1em; font-size: .9rem; }

/* Detail pages */
.detail { display: grid; gap: 2.5rem; grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr); align-items: start; }
@media (max-width: 860px) { .detail { grid-template-columns: 1fr; } }
.aside { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; position: sticky; top: 1.5rem; }
.aside h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.specs { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.specs li { border-left: 3px solid var(--orange); padding-left: .8rem; }
.specs b { display: block; font-family: var(--font-head); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.specs span { font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; list-style: none; margin: 0 0 1.4rem; }
.chips li { background: var(--sand); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .8rem; margin: 1.6rem 0; }
.gallery img { aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; width: 100%; }
.info-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 1.6rem; }
.info-grid h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .14em; color: var(--orange); }
.info-grid ul { padding-left: 1.1rem; margin: 0; }
.prose h2 { font-size: 1.5rem; margin-top: 2rem; }
.prose h3 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose strong { color: var(--navy); }
.callout { background: #fff; border-left: 4px solid var(--orange); border-radius: 10px; padding: 1.2rem 1.4rem; box-shadow: var(--shadow); margin: 1.6rem 0; }
.badge-new { display: inline-block; background: var(--orange); color: #fff; font-family: var(--font-head); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; vertical-align: middle; margin-left: .4rem; }

/* FAQ */
.faq details { background: #fff; border-radius: 12px; box-shadow: var(--shadow); margin-bottom: .9rem; padding: 0 1.3rem; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; padding: 1.1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > div { padding: 0 0 1.2rem; color: var(--ink); }

/* Contact */
.contact-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: start; }
.contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem; }
.contact-card .icon { width: 56px; height: 56px; border-radius: 50%; background: var(--sand); display: grid; place-items: center; margin-bottom: 1rem; color: var(--orange); }
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h2 { font-size: 1.4rem; }
.gate { border: 1px dashed var(--line); border-radius: 10px; padding: 1.1rem; background: var(--sand); }
.gate label { display: block; font-weight: 600; margin-bottom: .5rem; font-size: .95rem; }
.gate canvas { display: block; border-radius: 8px; background: #fff; margin: .4rem 0 .7rem; max-width: 100%; }
.gate .row { display: flex; gap: .6rem; flex-wrap: wrap; }
.gate input[type=text] { flex: 1; min-width: 120px; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; }
.gate .err { color: #b3261e; font-size: .85rem; margin: .5rem 0 0; min-height: 1.2em; }
.revealed { display: none; }
.revealed.show { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.email-big { font-family: var(--font-head); font-size: clamp(1.1rem, 3.2vw, 1.5rem); font-weight: 600; word-break: break-all; color: var(--navy); text-decoration: none; }
.email-big:hover { color: var(--orange); }
.compose { display: grid; gap: .8rem; margin-top: 1.2rem; }
.compose label { font-size: .85rem; font-weight: 600; display: block; margin-bottom: .25rem; }
.compose input, .compose select, .compose textarea { width: 100%; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 8px; font: inherit; background: #fff; }
.compose textarea { min-height: 120px; resize: vertical; }
.compose .two { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 480px) { .compose .two { grid-template-columns: 1fr; } }
.ig-handle { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--navy); text-decoration: none; }
.ig-handle:hover { color: var(--orange); }

/* CTA strip */
.cta { background: linear-gradient(135deg, var(--orange) 0%, #ff9a3c 100%); color: #fff; padding: 4rem 0; text-align: center; }
.cta h2 { color: #fff; }
.cta p { max-width: 560px; margin: 0 auto 1.4rem; color: #fff6ec; }
.cta .btn-row { justify-content: center; }
.cta .btn-ghost { border-color: #fff; }

/* Footer */
.site-footer { background: var(--navy); color: #aab4c2; padding: 3.5rem 0 2rem; font-size: .9rem; }
.site-footer .top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.site-footer img { height: 64px; width: auto; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
.site-footer nav a { color: #d3dae4; text-decoration: none; font-family: var(--font-head); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; font-size: .75rem; }
.site-footer nav a:hover { color: var(--orange); }
.site-footer .social a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.site-footer .social svg { width: 22px; height: 22px; }
.site-footer .bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .8rem; }
.site-footer .bottom a { color: #aab4c2; }

/* Breadcrumb / prev-next */
.crumbs { font-size: .82rem; color: #cdd5df; margin-bottom: 1rem; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.prevnext { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.prevnext a { text-decoration: none; color: var(--navy); }
.prevnext a:hover { color: var(--orange); }

/* 404 */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 8rem 0 4rem; }

/* Lightbox */
.gallery a.zoom { display: block; cursor: zoom-in; }
.gallery a.zoom img { transition: transform .2s ease; }
.gallery a.zoom:hover img { transform: scale(1.03); }
.prose > a.zoom { display: block; cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(15, 20, 28, .94); display: grid; place-items: center; padding: 3.5rem 1rem; }
.lightbox img { max-width: 100%; max-height: calc(100vh - 7rem); width: auto; height: auto; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.6); }
.lightbox button { position: absolute; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; line-height: 1; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lightbox button:hover, .lightbox button:focus-visible { background: var(--orange); outline: none; }
.lb-close { top: 1rem; right: 1rem; }
.lb-prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 1rem; left: 0; right: 0; text-align: center; color: #cdd5df; font-family: var(--font-head); letter-spacing: .1em; font-size: .85rem; }
@media (max-width: 600px) { .lightbox { padding: 3.5rem .5rem; } .lightbox button { width: 40px; height: 40px; font-size: 1.6rem; } }

/* Review avatars (initials) */
.review .who .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; flex: none; }
.review .who small a { color: var(--muted); }
.review blockquote { margin: 0; }
.reviews.masonry { display: block; columns: 3 300px; column-gap: 1.4rem; }
.reviews.masonry .review { break-inside: avoid; margin-bottom: 1.4rem; }
