:root {
  --deep: #0b2b3c;
  --deep-2: #103d54;
  --teal: #1b8a9c;
  --teal-light: #3fb6c4;
  --sand: #f4efe6;
  --paper: #ffffff;
  --ink: #16323f;
  --ink-soft: #4d6773;
  --accent: #e0a63c;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 43, 60, 0.10);
  --max: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
a { color: var(--teal); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 43, 60, .92);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .2px;
}

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: #d9e7ed; text-decoration: none; font-size: .95rem; }
.nav a:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #22150a;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(224, 166, 60, .35); }

.btn-small { padding: 8px 16px; font-size: .9rem; }

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-ghost:hover { box-shadow: 0 8px 18px rgba(27, 138, 156, .25); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,43,60,.85), rgba(16,61,84,.95)),
    radial-gradient(circle at 20% 20%, #1b8a9c 0%, transparent 55%),
    radial-gradient(circle at 80% 0%, #2c6f86 0%, transparent 50%),
    var(--deep);
  color: #eaf4f7;
  padding: 90px 0 120px;
  overflow: hidden;
}

.hero-inner { max-width: 760px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }

.lead { font-size: 1.15rem; color: #c9dee6; max-width: 560px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 44px; }
.hero-actions .btn-ghost { color: #eaf4f7; border-color: rgba(234, 244, 247, .5); }

.hero-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-stats strong { display: block; font-size: 1.8rem; color: #fff; }
.hero-stats span { font-size: .85rem; color: #a9c7d2; }

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: var(--paper);
  clip-path: polygon(0 55%, 12% 40%, 25% 55%, 38% 38%, 52% 55%, 66% 40%, 80% 56%, 92% 42%, 100% 55%, 100% 100%, 0 100%);
}

/* ---------- sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--sand); }

.section-title { font-size: clamp(1.7rem, 3.5vw, 2.3rem); text-align: center; }
.section-sub { text-align: center; color: var(--ink-soft); max-width: 560px; margin: 0 auto 48px; }

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

.card {
  background: var(--paper);
  border: 1px solid rgba(11, 43, 60, .08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}
.card:hover { transform: translateY(-4px); }
.card-icon { font-size: 2rem; margin-bottom: 8px; }

.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { padding-left: 24px; position: relative; color: var(--ink-soft); font-size: .95rem; }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- spots ---------- */
.spots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.spot {
  background: var(--paper);
  border-left: 4px solid var(--teal);
  border-radius: 10px;
  padding: 22px;
}
.spot h3 { margin-bottom: 4px; }
.spot-fish {
  color: var(--teal);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.spot p:last-child { margin: 0; color: var(--ink-soft); font-size: .95rem; }

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

.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(11, 43, 60, .1);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.price-card .ticks { margin: 18px 0 24px; text-align: left; }

.price-card.featured {
  background: var(--deep);
  color: #eaf4f7;
  border-color: transparent;
  transform: translateY(-8px);
}
.price-card.featured .ticks li { color: #c9dee6; }
.price-card.featured .ticks li::before { color: var(--accent); }

.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #22150a;
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.price { font-size: 2.4rem; font-weight: 700; margin: 6px 0 0; }
.price span { font-size: .95rem; font-weight: 400; color: var(--ink-soft); }
.price-card.featured .price span { color: #a9c7d2; }

/* ---------- quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
blockquote {
  margin: 0;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
blockquote p { font-size: 1.02rem; font-style: italic; }
cite { color: var(--ink-soft); font-size: .88rem; font-style: normal; font-weight: 600; }

/* ---------- cta ---------- */
.cta { background: var(--deep-2); color: #eaf4f7; }
.cta h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); }
.cta p { color: #c9dee6; }
.cta a { color: var(--accent); }

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta-contact { line-height: 2; }

.form {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 26px;
  display: grid;
  gap: 14px;
}
.form label { display: grid; gap: 6px; font-size: .9rem; color: #c9dee6; }
.form input, .form textarea {
  font: inherit;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
}
.form input:focus, .form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
.form-note { color: var(--accent); font-size: .9rem; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: #c9dee6; padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.site-footer p { margin: 0; font-size: .9rem; }
.muted { color: #7fa2b0; }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--deep);
    padding: 12px 20px 20px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .section { padding: 56px 0; }
  .hero { padding: 60px 0 90px; }
  .hero-stats { gap: 26px; }
}
