* {
  box-sizing: border-box;
}

:root {
  --navy: #05234e;
  --blue: #0d4e8e;
  --gold: #f7b723;
  --light: #e8f2fc;
  --bg: #f7fafd;
  --text: #141f2d;
  --muted: #526070;
  --white: #ffffff;
  --line: #d8e2ed;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.container {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  height: 96px;
  padding: 12px clamp(20px, 5vw, 80px);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 20px rgba(5, 35, 78, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  color: var(--navy);
}

nav a {
  text-decoration: none;
}

nav .active {
  color: var(--gold);
}

.hero {
  min-height: 640px;
  background-image: url("assets/images/hero-boat-toronto.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 22, 55, 0.88) 0%, rgba(0, 22, 55, 0.62) 38%, rgba(0, 22, 55, 0.1) 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 48px));
  margin-left: clamp(24px, 6vw, 100px);
  color: var(--white);
}

.eyebrow {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h2 {
  margin: 32px 0 12px;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.hero-actions,
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
}

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

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.quick-facts {
  background: var(--navy);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px clamp(24px, 5vw, 80px);
  gap: 26px;
}

.quick-facts article {
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,0.28);
  min-height: 100px;
}

.quick-facts article:last-child {
  border-right: 0;
}

.fact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  font-size: 1.5rem;
}

.quick-facts h3 {
  margin: 0;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 1.15rem;
}

.quick-facts p {
  margin: 4px 0 0;
  color: #e6eef8;
}

.intro {
  padding: 64px 0 34px;
}

h2 {
  color: var(--navy);
  margin: 0 0 18px;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.1;
}

.intro p {
  margin: 0;
  font-size: 1.2rem;
  max-width: 1280px;
}

.activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 28px 0 72px;
}

.activity-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(5, 35, 78, 0.08);
}

.activity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.activity-card div {
  padding: 22px;
}

.activity-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.4rem;
}

.activity-card p {
  margin: 0;
  color: var(--text);
}

.feature {
  background: var(--light);
  display: grid;
  grid-template-columns: 46% 1fr;
  align-items: center;
}

.feature > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.feature > div {
  padding: clamp(32px, 5vw, 78px);
}

.feature p {
  font-size: 1.18rem;
  max-width: 760px;
}

.feature ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.feature li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.gallery {
  padding: 68px 0 76px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 12px 30px rgba(5, 35, 78, 0.12);
}

.cta {
  background: var(--navy);
  color: var(--white);
  justify-content: space-between;
  padding: 54px clamp(24px, 6vw, 100px);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta p {
  margin: 0;
  color: #e6eef8;
  font-size: 1.2rem;
}

@media (max-width: 1100px) {
  .site-header {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .quick-facts,
  .activities {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-facts article {
    border-right: 0;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero {
    min-height: 700px;
    background-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 22, 55, 0.82), rgba(0, 22, 55, 0.7));
  }

  .quick-facts,
  .activities,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .activity-card img,
  .gallery-grid img {
    height: 240px;
  }

  .cta {
    align-items: flex-start;
  }
}
