/* ============================================================
   Hook Me Up Charters — static site
   Deep-sea theme: blacks (#05080f), navy (#011033), blues
   (#0073B5 brand / #38bdf8 accent), white. Pill buttons, glass
   cards, glow accents.
   ============================================================ */

:root {
  --black: #05080f;
  --black-2: #0a1220;
  --navy: #011033;
  --navy-2: #021c4d;
  --blue: #0073B5;
  --blue-bright: #0091e0;
  --blue-deep: #005e94;
  --sky: #38bdf8;
  --sky-soft: #9ed4f5;
  --ink: #1c2430;
  --grey: #64707e;
  --line: #dbe3ea;
  --bg-light: #f2f7fb;
  --white: #ffffff;
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius-card: 14px;
  --radius-pill: 40px;
  --shadow: 0 14px 40px rgba(1, 16, 51, .14);
  --shadow-dark: 0 18px 50px rgba(0, 0, 0, .45);
  --glow: 0 8px 28px rgba(0, 145, 224, .45);
  --grad-blue: linear-gradient(135deg, #0091e0 0%, #0073B5 55%, #005e94 100%);
  --grad-sea: linear-gradient(160deg, #05080f 0%, #011033 55%, #02264d 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(42px, 5.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; }
h3 { font-size: clamp(26px, 3vw, 32px); font-weight: 700; }
h4 { font-size: 22px; font-weight: 700; }
::selection { background: var(--blue); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Kicker (small label above headings) ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--sky);
}
.kicker::before {
  content: ""; width: 42px; height: 3px; border-radius: 2px;
  background: var(--grad-blue); flex: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-blue); color: var(--white);
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0, 145, 224, .6); }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: var(--glow); }
.btn-outline-light { background: rgba(255, 255, 255, .06); color: var(--white); border-color: rgba(255, 255, 255, .75); backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(4, 9, 20, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(56, 189, 248, .18);
}
.site-header::after {
  content: ""; display: block; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 145, 224, .8), transparent);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 24px; max-width: 1360px; margin: 0 auto;
}
.header-logo img { height: 54px; width: auto; filter: drop-shadow(0 2px 6px rgba(0, 145, 224, .35)); }
.main-nav ul { display: flex; gap: 34px; list-style: none; }
.main-nav a {
  position: relative;
  font-family: var(--font-head); font-size: 16px; font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .88); padding: 8px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 2px; width: 0%;
  background: var(--grad-blue); border-radius: 2px; transition: width .25s;
}
.main-nav a:hover, .main-nav a.active { color: var(--sky); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.header-cta { display: flex; gap: 14px; align-items: center; }
.header-cta .phone {
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: var(--white); border: 2px solid rgba(56, 189, 248, .6);
  padding: 12px 26px; border-radius: var(--radius-pill);
  transition: background .2s, color .2s, border-color .2s;
}
.header-cta .phone:hover { background: var(--sky); border-color: var(--sky); color: var(--navy); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--white);
  margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 85% 20%, rgba(0, 145, 224, .28), transparent 60%),
    linear-gradient(100deg, rgba(4, 9, 20, .94) 0%, rgba(1, 16, 51, .82) 45%, rgba(1, 16, 51, .45) 100%);
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: linear-gradient(to top, rgba(4, 9, 20, .85), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
  padding: 150px 24px 160px;
}
.hero-inner.hero-center { text-align: center; padding: 120px 24px 130px; }
.hero h1 {
  color: var(--white); margin: 18px 0 24px; max-width: 780px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}
.hero h1 .accent, .accent { color: var(--sky); }
.hero-inner.hero-center h1 { margin-left: auto; margin-right: auto; }
.hero-inner.hero-center .kicker { justify-content: center; }
.hero p.lead {
  max-width: 760px; margin-bottom: 38px; font-size: 19px;
  color: rgba(235, 244, 250, .92);
}
.hero-inner.hero-center p.lead { margin-left: auto; margin-right: auto; }
.hero .btn-row { margin-top: 6px; }
.hero-inner.hero-center .btn-row { justify-content: center; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-light) 0%, #e8f1f8 100%); }
.section-dark, .section-navy {
  background: var(--grad-sea); color: rgba(235, 244, 250, .9);
}
.section-dark h2, .section-dark h3, .section-navy h2, .section-navy h3 { color: var(--white); }
.section-photo {
  position: relative; background-size: cover; background-position: center;
  color: rgba(235, 244, 250, .92);
}
.section-photo::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 400px at 15% 10%, rgba(0, 145, 224, .25), transparent 60%),
    linear-gradient(180deg, rgba(4, 9, 20, .92) 0%, rgba(1, 16, 51, .86) 50%, rgba(4, 9, 20, .94) 100%);
}
.section-photo > .container { position: relative; z-index: 1; }
.section-photo h2, .section-photo h3 { color: var(--white); }

.section-head { text-align: center; max-width: 840px; margin: 0 auto 60px; }
.section-head .kicker { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 18px; }
.section-head h2::after {
  content: ""; display: block; width: 76px; height: 4px; border-radius: 2px;
  background: var(--grad-blue); margin: 20px auto 0;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .btn-row { margin-top: 30px; }
.split h2, .split h3 { margin-bottom: 18px; }
.split h3::after {
  content: ""; display: block; width: 56px; height: 4px; border-radius: 2px;
  background: var(--grad-blue); margin-top: 14px;
}
.split img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(56, 189, 248, .25);
}

/* ---------- Feature cards (home) ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card {
  position: relative;
  background: var(--grad-sea);
  color: rgba(235, 244, 250, .88);
  border-radius: var(--radius-card); overflow: hidden;
  border: 1px solid rgba(56, 189, 248, .22);
  box-shadow: var(--shadow-dark);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0, 60, 110, .5); }
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue); z-index: 1;
}
.feature-card img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform .4s;
}
.feature-card:hover img { transform: scale(1.05); }
.feature-card .feature-body { padding: 28px 30px 32px; }
.feature-card h3 { color: var(--white); font-size: 24px; margin-bottom: 10px; }
.feature-card h3::after { display: none; }
.feature-card p { font-size: 16.5px; color: rgba(190, 214, 233, .85); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid rgba(56, 189, 248, .2);
  box-shadow: 0 8px 26px rgba(1, 16, 51, .25);
  transition: transform .3s, box-shadow .3s;
}
.gallery img:hover {
  transform: scale(1.035);
  box-shadow: 0 16px 44px rgba(0, 115, 181, .45);
}
.gallery-cta { text-align: center; margin-top: 44px; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.review-card {
  position: relative;
  background: linear-gradient(165deg, rgba(10, 24, 48, .92), rgba(4, 12, 28, .96));
  color: rgba(222, 235, 245, .92);
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: var(--radius-card); padding: 32px;
  box-shadow: var(--shadow-dark);
  display: flex; flex-direction: column; gap: 14px;
  backdrop-filter: blur(6px);
  transition: transform .25s, border-color .25s;
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, .5); }
.review-head { display: flex; align-items: center; gap: 14px; }
.review-head img.avatar {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(56, 189, 248, .5);
}
.review-name { font-family: var(--font-head); font-weight: 700; color: var(--white); }
.review-meta { font-size: 13.5px; color: rgba(158, 212, 245, .6); }
.stars { color: #ffc453; font-size: 18px; letter-spacing: 3px; text-shadow: 0 0 12px rgba(255, 196, 83, .35); }
.review-card p { font-size: 15.5px; line-height: 1.7; }
.review-google {
  margin-left: auto; width: 24px; height: 24px;
  background: var(--white); border-radius: 50%; padding: 3px;
}

/* ---------- Trip cards (charter info) ---------- */
.trips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.trip-card {
  position: relative;
  background: var(--grad-sea);
  color: rgba(222, 235, 245, .9);
  border: 1px solid rgba(56, 189, 248, .22);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-dark);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.trip-card:hover { transform: translateY(-5px); border-color: rgba(56, 189, 248, .55); }
.trip-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue);
}
.trip-card .location {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--sky); font-size: 13px;
}
.trip-card h3 { font-size: 27px; margin: 10px 0 18px; color: var(--white); }
.trip-card h3::after { display: none; }
.trip-card ul.pricing { list-style: none; margin-bottom: 20px; }
.trip-card ul.pricing li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px dashed rgba(56, 189, 248, .3);
  font-family: var(--font-head); font-weight: 600; color: rgba(235, 244, 250, .92);
}
.trip-card ul.pricing li span.price {
  color: var(--sky); font-size: 22px; font-weight: 800;
  text-shadow: 0 0 18px rgba(56, 189, 248, .4);
}
.trip-card p { flex: 1; font-size: 16px; color: rgba(190, 214, 233, .85); }
.trip-card .passengers {
  display: inline-block;
  font-size: 13.5px; font-weight: 600; letter-spacing: .06em;
  color: var(--sky-soft); margin: 18px 0 22px;
  padding: 6px 16px; border: 1px solid rgba(56, 189, 248, .35);
  border-radius: var(--radius-pill); align-self: flex-start;
}

/* ---------- Fleet ---------- */
.boat { padding: 100px 0; }
.boat:nth-child(even) { background: var(--grad-sea); }
.boat:nth-child(even) h3 { color: var(--white); }
.boat:nth-child(even) p { color: rgba(210, 228, 240, .88); }
.boat:nth-child(even) .kicker { color: var(--sky); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.contact-form {
  position: relative;
  background: var(--white); border-radius: var(--radius-card);
  padding: 44px; box-shadow: var(--shadow);
  border: 1px solid rgba(0, 115, 181, .15);
  overflow: hidden;
}
.contact-form::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-blue);
}
.contact-form h3 { margin-bottom: 26px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 14.5px; letter-spacing: .03em; color: var(--navy); margin-bottom: 6px;
}
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 16px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--bg-light);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 145, 224, .18);
}
.form-note { font-size: 14px; color: var(--grey); margin-top: 14px; }
.form-success {
  background: #e5f4ec; border: 1px solid #2e9e5b; color: #1d6b3d;
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; display: none;
}
.form-success.show { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.info-block { margin-bottom: 36px; }
.info-block h3 { margin-bottom: 14px; }
.info-block a { font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 20px; }
.cta-band h2::after {
  content: ""; display: block; width: 76px; height: 4px; border-radius: 2px;
  background: var(--grad-blue); margin: 20px auto 0;
}
.cta-band p { max-width: 820px; margin: 0 auto 34px; }

.phone-band {
  position: relative;
  background: var(--grad-blue);
  color: var(--white); text-align: center;
  padding: 36px 24px; font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 800;
  letter-spacing: .01em;
  box-shadow: inset 0 0 60px rgba(255, 255, 255, .08);
}
.phone-band a {
  color: var(--white); text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .5);
  text-underline-offset: 5px;
}
.phone-band a:hover { text-decoration-color: var(--white); }

/* ---------- Privacy ---------- */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { font-size: 28px; margin: 44px 0 14px; }
.prose h2::after {
  content: ""; display: block; width: 44px; height: 3px; border-radius: 2px;
  background: var(--grad-blue); margin-top: 10px;
}
.prose p { margin-bottom: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--black);
  color: #93a3b3; padding: 74px 0 32px;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: center; justify-content: space-between;
  padding-bottom: 44px; border-bottom: 1px solid rgba(56, 189, 248, .15);
}
.footer-logo img { height: 84px; width: auto; filter: drop-shadow(0 2px 10px rgba(0, 145, 224, .35)); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 26px; list-style: none; }
.footer-nav a {
  color: rgba(255, 255, 255, .85); font-family: var(--font-head);
  font-weight: 500; font-size: 15.5px; letter-spacing: .03em;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--sky); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(56, 189, 248, .35); color: var(--white);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.footer-social a:hover {
  background: var(--grad-blue); border-color: transparent;
  transform: translateY(-3px); box-shadow: var(--glow);
}
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  padding-top: 28px; font-size: 14.5px;
}
.footer-bottom a { color: #93a3b3; transition: color .2s; }
.footer-bottom a:hover { color: var(--sky); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .main-nav ul { gap: 22px; }
}
@media (max-width: 960px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(4, 9, 20, .97); backdrop-filter: blur(12px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .5);
    border-bottom: 2px solid rgba(0, 145, 224, .5);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 0; }
  .main-nav li { border-top: 1px solid rgba(56, 189, 248, .12); }
  .main-nav a { display: block; padding: 15px 24px; }
  .main-nav a::after { display: none; }
  .header-cta .phone { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .features, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trips { grid-template-columns: 1fr; }
  .hero-inner { padding: 100px 24px 110px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .features, .reviews-grid { grid-template-columns: 1fr; }
  .section, .boat { padding: 64px 0; }
  .hero-inner { padding: 80px 24px 90px; }
  .header-cta .btn { padding: 11px 22px; font-size: 15px; }
  .trip-card, .contact-form { padding: 30px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
