:root {
  --navy-dark: #0a1e2e;
  --navy: #0e2a3d;
  --navy-mid: #123a52;
  --teal: #29e0cf;
  --teal-dim: #1fa79c;
  --ice: #bfeaf2;
  --white: #ffffff;
  --off-white: #f4f8fa;
  --gray: #5a6b76;
  --border: #1c3a4f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--navy-dark);
  background: var(--off-white);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top bar */
.topbar {
  background: var(--navy-dark);
  color: var(--ice);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.topbar strong {
  color: var(--teal);
}

/* Header / nav */
header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 56px;
  width: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text .line1 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.03em;
}

.brand-text .line2 {
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 0.18em;
  font-weight: 600;
}

nav.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}

nav.main-nav a {
  color: var(--ice);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--navy-mid);
  color: var(--teal);
}

nav.main-nav a.cta-btn {
  background: var(--teal);
  color: var(--navy-dark);
  margin-left: 8px;
}

nav.main-nav a.cta-btn:hover {
  background: var(--teal-dim);
  color: var(--navy-dark);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  background: url('../images/boat-action-1.jpg') center 35% / cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 30, 46, 0) 0%, rgba(10, 30, 46, 0) 55%, rgba(8, 22, 34, 0.75) 82%, rgba(8, 22, 34, 0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  text-align: center;
  color: var(--white);
}

.hero-content .eyebrow {
  display: inline-block;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {
  color: var(--teal);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--ice);
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--teal-dim);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ice);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head .kicker {
  color: var(--teal-dim);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: 2.1rem;
  color: var(--navy-dark);
  margin: 10px 0 12px;
  font-weight: 800;
}

.section-head p {
  color: var(--gray);
  font-size: 1.02rem;
}

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

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

.section-dark .section-head p {
  color: var(--ice);
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #e2ecef;
  border-radius: 14px;
  padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(10, 30, 46, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}

.service-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.service-card p {
  color: var(--gray);
  font-size: 0.94rem;
}

/* Photo showcase */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-grid img,
.photo-grid .ph {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.photo-grid a.ph-wrap {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.photo-grid a.ph-wrap img {
  transition: transform 0.35s;
  box-shadow: none;
  border-radius: 0;
}

.photo-grid a.ph-wrap:hover img {
  transform: scale(1.06);
}

/* Two column feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.split.reverse .split-img {
  order: 2;
}

.split h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.split p {
  color: var(--gray);
  margin-bottom: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--navy-dark);
  font-weight: 600;
}

.check-list-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.check-list-horizontal li {
  margin-bottom: 0;
}

.check-list li::before {
  content: '✓';
  color: var(--teal-dim);
  font-weight: 900;
  flex-shrink: 0;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stats .stat h3 {
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 900;
}

.stats .stat p {
  color: var(--ice);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-dark), var(--navy-mid));
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.cta-band h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-band p {
  color: var(--ice);
  margin-bottom: 28px;
}

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid #e2ecef;
}

.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-info-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-list .icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.contact-info-list h4 {
  font-size: 0.95rem;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.contact-info-list p,
.contact-info-list a {
  color: var(--gray);
  font-size: 0.94rem;
}

form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d5e2e6;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--off-white);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

form .full {
  grid-column: 1 / -1;
}

.note {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 12px;
}

/* Star rating input */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 2rem;
  line-height: 1;
  color: #d5e2e6;
  cursor: pointer;
  margin: 0;
  padding: 0;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--teal-dim);
}

/* About page */
.about-hero {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 64px 0 48px;
}

.about-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.about-hero p {
  color: var(--ice);
  max-width: 620px;
  margin: 0 auto;
}

.services-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 30, 46, 0.75) 0%, rgba(10, 30, 46, 0.85) 100%), url('../images/services-hero-optimized.jpg') 35% 40% / cover no-repeat;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 20px;
}

.value-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.value-card h3 {
  margin-bottom: 8px;
  color: var(--navy-dark);
}

.value-card p {
  color: var(--gray);
  font-size: 0.92rem;
}

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: var(--ice);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer-grid li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--teal);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.footer-brand img {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand span {
  font-weight: 800;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-grid p {
  font-size: 0.88rem;
  color: var(--ice);
  opacity: 0.85;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
  background: var(--teal);
  color: var(--navy-dark);
}

.social-links svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--gray);
}

/* Placeholder highlight for info to confirm */
.tbd {
  color: #ffb347;
  font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
  .split,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-img {
    order: -1;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  }
  nav.main-nav.open {
    max-height: 400px;
  }
  nav.main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 10px 24px 20px;
  }
  nav.main-nav a {
    display: block;
    padding: 14px 10px;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  nav.main-nav a.cta-btn {
    margin: 10px 0 0;
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }
  .brand img {
    height: 44px;
    width: 44px;
  }
  .brand-text .line1 {
    font-size: 1rem;
  }
  .brand-text .line2 {
    font-size: 0.6rem;
  }
}

@media (max-width: 760px) {
  .hero-content h1 {
    font-size: 2.1rem;
  }
  section {
    padding: 48px 0;
  }
  .about-hero {
    padding: 40px 0 32px;
  }
  .about-hero h1 {
    font-size: 1.9rem;
  }
  .section-head h2 {
    font-size: 1.6rem;
  }
  .split h2 {
    font-size: 1.6rem;
  }
  .cta-band {
    padding: 48px 0;
  }
  .cta-band h2 {
    font-size: 1.6rem;
  }
  .service-card {
    padding: 22px 20px;
  }
  .contact-card {
    padding: 24px;
  }
  .check-list-horizontal {
    grid-template-columns: 1fr;
  }
  form .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-grid h4 {
    margin-bottom: 10px;
  }
  .footer-grid li {
    margin-bottom: 6px;
  }
  .star-rating label {
    font-size: 1.8rem;
    padding: 6px;
  }
}
