
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-deep: #0a2540;
  --navy: #1e3a5f;
  --blue: #2b6fb3;
  --blue-bright: #4ea3e8;
  --sky: #c7e3f5;
  --paper: #fbf7ef;
  --ink: #0f1e2e;
  --rust: #c75d2c;
  --gold: #caa26b;
  --gold-soft: rgba(202, 162, 107, 0.22);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    url('graphics/waves.svg');
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 120% auto;
  background-attachment: fixed;
  /* subtle tint over the SVG so it reads as a watermark */
  color: var(--ink);
  font-family: 'Comfortaa', sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}


.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 38px 5% 56px;
}

.site-brand,
.rule,
.hero-figure,
.section {
  width: min(100%, 980px);
}

.site-brand {
  margin-bottom: 24px;
  position: relative;
}

/* Heron watermark — large, faint, positioned to the right of the heading */
.site-brand::after {
  content: '';
  position: absolute;
  top: -12px;
  right: 0;
  width: 160px;
  height: 160px;
  background: url('graphics/heron pantone 7694 c.svg') no-repeat center / contain;
  opacity: 0.12;
  pointer-events: none;
}


.site-brand p {
  margin: 0;
  font-family: 'Comfortaa', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--navy-deep);
}

.site-brand h1 {
  margin: 4px 0 0;
  font-family: 'Comfortaa', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--blue);
}


.rule {
  height: 4px;
  width: 100%;
  background: var(--gold);
  margin: 18px 0 32px;
  border-radius: 2px;
}

.rule-blue {
  background: var(--blue);
}


.hero-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  background: #f1f1f1;
  box-shadow: 0 10px 24px rgba(10, 37, 64, 0.08);
  border-radius: 12px;
}

.hero-figure {
  margin: 0;
  position: relative;
}

/* Subtle kayaker silhouette watermark bottom-right of the hero */
.hero-figure::after {
  content: '';
  position: absolute;
  bottom: -24px;
  right: -12px;
  width: 120px;
  height: 120px;
  background: url('graphics/kayaker.svg') no-repeat center / contain;
  opacity: 0.10;
  pointer-events: none;
  z-index: 1;
}

.hero-logo-card {
  width: 100%;
  aspect-ratio: 2.2 / 1;
  border: 1px solid rgba(10, 37, 64, 0.1);
  background: #fff;
  display: grid;
  place-items: center;
  padding: 22px;
}

.tour-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


.section {
  margin-top: 64px;
  padding: 0;
}


.section h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-deep);
}


.section p {
  margin: 0 0 18px;
  font-size: clamp(16px, 2vw, 19px);
  color: var(--navy);
}

.section strong {
  font-weight: 700;
}

.lead {
  font-weight: 700;
}

.price-list {
  margin: 28px 0 8px;
  display: grid;
  gap: 14px;
}

.price-line {
  font-size: 18px;
  font-weight: 700;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}


.btn {
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(43, 111, 179, .18);
}

.btn-secondary {
  color: var(--navy-deep);
  border: 1.5px solid var(--navy-deep);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--navy-deep);
  color: var(--paper);
}


.note-card {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: 14px;
  background: rgba(251, 247, 239, 0.85);
  color: var(--navy);
}

.note-card p {
  margin: 0;
}


.page-footer {
  margin-top: 72px;
  padding: 18px 5% 22px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #eceff3;
  border-top: 1px solid var(--gold-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(18, 18, 18, 0.72);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

/* Waves accent strip above footer */
.page-footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: url('graphics/waves.svg') no-repeat bottom center / cover;
  opacity: 0.03;
  pointer-events: none;
}

.page-footer a {
  color: var(--blue-bright);
  text-decoration: none;
}

.muted {
  color: rgba(18, 18, 18, 0.74);
}

@media (max-width: 720px) {
  .page-shell {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    padding-top: 20px;
  }

  .hero-media,
  .hero-logo-card {
    width: 100%;
    border-radius: 8px;
  }

  .section {
    margin-top: 42px;
    padding: 0;
  }
}