:root {
  --blue-950: #06245d;
  --blue-900: #082f73;
  --blue-700: #0860bd;
  --blue-500: #0f8fe8;
  --green-600: #6cad12;
  --green-500: #8fca22;
  --sky-50: #eef8ff;
  --ink: #071d35;
  --muted: #536274;
  --white: #ffffff;
  --line: rgba(8, 47, 115, 0.14);
  --shadow: 0 24px 70px rgba(7, 29, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--sky-50);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 8px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 28px));
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(6, 36, 93, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(6, 36, 93, 0.16);
}

.brand,
.header-call,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  color: var(--blue-950);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
}

.nav-links {
  gap: 6px;
}

.nav-links a {
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(8, 96, 189, 0.09);
}

.header-call {
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
  white-space: nowrap;
}

.call-button {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  color: var(--white);
  background: var(--green-600);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-sup-lake.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 36%, rgba(255, 255, 255, 0.18) 66%, rgba(2, 24, 54, 0.14) 100%),
    linear-gradient(180deg, rgba(238, 248, 255, 0.32) 0%, rgba(255, 255, 255, 0) 42%, rgba(4, 42, 79, 0.58) 100%);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 3px;
  color: var(--blue-900);
  font-size: 19px;
  font-weight: 900;
  text-transform: uppercase;
}

.location svg {
  width: 24px;
  height: 24px;
  fill: var(--blue-700);
  stroke: var(--blue-700);
}

.brush-label,
.hero-ribbon {
  width: fit-content;
  margin: 0;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 900;
  text-transform: uppercase;
  transform: rotate(-1deg);
  clip-path: polygon(3% 0, 98% 6%, 100% 41%, 96% 100%, 1% 94%, 0 48%);
}

.brush-label {
  margin-top: 0;
  margin-left: 32px;
  padding: 5px 22px 6px;
  font-size: 20px;
  font-style: italic;
}

.hero h1 {
  max-width: 610px;
  margin: 10px 0 9px;
  color: var(--blue-950);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  font-size: 66px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero h1 strong {
  color: var(--blue-700);
  font-size: 54px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: 0;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.hero-ribbon {
  padding: 8px 21px 9px;
  font-size: 18px;
}

.hero-copy {
  max-width: 475px;
  margin: 14px 0 0;
  padding: 12px 15px;
  border-radius: 8px;
  color: #183858;
  background: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 16px 30px rgba(108, 173, 18, 0.26);
}

.btn-secondary {
  color: var(--blue-950);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(8, 47, 115, 0.16);
}

.hero-badge {
  position: absolute;
  right: max(34px, calc((100vw - 1120px) / 2));
  bottom: 24px;
  display: grid;
  width: 144px;
  height: 144px;
  place-content: center;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-7deg);
}

.hero-badge::before {
  position: absolute;
  inset: 9px;
  border: 2px dashed rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  content: "";
}

.hero-badge span,
.hero-badge strong {
  position: relative;
  display: block;
  line-height: 1.05;
}

.hero-badge span {
  font-size: 19px;
  font-style: italic;
  font-weight: 800;
}

.hero-badge strong {
  font-size: 29px;
  font-style: italic;
  font-weight: 950;
}

section:not(.hero) {
  padding: 30px 0;
}

.benefits,
.prices,
.faq {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 14px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 32px;
  line-height: 1.04;
}

.benefit-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.benefit-item,
.price-card,
.route-panel,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 38px rgba(6, 36, 93, 0.08);
}

.benefit-item {
  padding: 14px;
}

.benefit-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--white);
}

.benefit-icon.blue {
  background: var(--blue-700);
}

.benefit-icon.green {
  background: var(--green-600);
}

.benefit-icon svg {
  width: 25px;
  height: 25px;
}

.benefit-item h3,
.price-card h3 {
  margin: 0;
  color: var(--blue-950);
  line-height: 1.06;
}

.benefit-item h3 {
  font-size: 18px;
  text-transform: uppercase;
}

.benefit-item p,
.price-card p,
.route-content p,
.faq p {
  color: var(--muted);
}

.benefit-item p,
.price-card p {
  margin: 7px 0 0;
  font-size: 14px;
}

.prices {
  position: relative;
}

.prices::before {
  position: absolute;
  z-index: -1;
  top: 52px;
  right: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(15, 143, 232, 0.16);
  content: "";
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  min-height: 160px;
  padding: 16px;
}

.price-card.featured {
  color: var(--white);
  background: var(--blue-700);
  transform: translateY(-6px);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured .time {
  color: var(--white);
}

.price-card .time {
  margin: 0 0 8px;
  color: var(--blue-700);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 29px;
}

.price-note {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.route {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
  align-items: stretch;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.route-content {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 36, 93, 0.98), rgba(8, 96, 189, 0.72) 58%, rgba(108, 173, 18, 0.18)),
    url("assets/hero-sup-lake.jpg") center / cover;
  box-shadow: 0 22px 55px rgba(6, 36, 93, 0.2);
}

.route-content::after {
  position: absolute;
  right: -58px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.route-content .eyebrow,
.route-content h2,
.route-content p {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.route-content h2 {
  max-width: 620px;
  font-size: 36px;
}

.route-content > p {
  max-width: 590px;
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 800;
}

.route-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.route-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 900;
}

.contact-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.contact-list .route-call {
  border-color: rgba(108, 173, 18, 0.72);
  background: linear-gradient(135deg, rgba(108, 173, 18, 0.95), rgba(143, 202, 34, 0.76));
  box-shadow: 0 16px 34px rgba(21, 68, 17, 0.22);
}

.contact-list .route-map {
  background: rgba(255, 255, 255, 0.18);
}

.contact-list svg {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.contact-list strong {
  display: block;
  font-size: 19px;
}

.route-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
  border-color: rgba(8, 96, 189, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 255, 0.92)),
    radial-gradient(circle at 100% 0, rgba(15, 143, 232, 0.2), transparent 43%);
  box-shadow: 0 18px 45px rgba(6, 36, 93, 0.1);
}

.route-panel::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(108, 173, 18, 0.13);
  content: "";
}

.panel-kicker {
  position: relative;
  margin: 0 0 6px;
  color: var(--green-600);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-title {
  position: relative;
  margin: 0 0 16px;
  color: var(--blue-950);
  font-size: 28px;
  line-height: 1.05;
  font-weight: 950;
  text-transform: uppercase;
}

.route-steps {
  position: relative;
  display: grid;
  gap: 10px;
}

.route-step {
  position: relative;
  min-height: 78px;
  padding: 12px 12px 12px 62px;
  border-radius: 7px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(8, 47, 115, 0.08);
}

.route-step span {
  position: absolute;
  top: 13px;
  left: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: 13px;
  font-weight: 950;
}

.route-step strong {
  display: block;
  color: var(--blue-950);
  font-size: 15px;
  line-height: 1.15;
}

.route-step p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.pack-strip {
  position: relative;
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.pack-strip span,
.pack-strip strong {
  display: block;
}

.pack-strip span {
  font-size: 12px;
  font-weight: 900;
  opacity: 0.78;
  text-transform: uppercase;
}

.pack-strip strong {
  margin-top: 2px;
  font-size: 15px;
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq details {
  padding: 0 16px;
}

.faq summary {
  cursor: pointer;
  padding: 13px 0;
  color: var(--blue-950);
  font-size: 17px;
  font-weight: 900;
}

.faq details[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq p {
  margin: 9px 0 13px;
}

.footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--blue-950);
  text-align: center;
}

.footer p,
.footer a,
.footer span {
  margin: 0;
  font-weight: 900;
}

.floating-call {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 18px;
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-600);
  box-shadow: 0 12px 28px rgba(7, 29, 53, 0.24);
}

.floating-call svg {
  width: 25px;
  height: 25px;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 510px;
  }

  .hero-content {
    padding-top: 82px;
  }

  .hero h1 span {
    font-size: 56px;
  }

  .hero h1 strong {
    font-size: 46px;
  }

  .benefit-grid,
  .price-grid,
  .route {
    grid-template-columns: 1fr 1fr;
  }

  .route-content {
    grid-column: 1 / -1;
  }

  .route-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100% - 20px);
    min-height: 50px;
    padding: 6px 8px;
  }

  .brand span:last-child {
    max-width: 112px;
    font-size: 12px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .header-call {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    min-height: 540px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(6, 36, 93, 0.28) 74%, rgba(4, 42, 79, 0.68) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 68px 0 104px;
  }

  .location {
    font-size: 13px;
    gap: 6px;
    margin-bottom: 3px;
  }

  .location svg {
    width: 19px;
    height: 19px;
  }

  .brush-label {
    margin-top: 0;
    margin-left: 25px;
    padding: 4px 14px 5px;
    font-size: 14px;
  }

  .hero h1 {
    max-width: 355px;
    margin-top: 9px;
    margin-bottom: 7px;
  }

  .hero h1 span {
    font-size: 36px;
  }

  .hero h1 strong {
    font-size: 30px;
    transform: rotate(-1deg);
  }

  .hero-ribbon {
    padding: 7px 11px 8px;
    font-size: 13px;
  }

  .hero-copy {
    max-width: 345px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .btn {
    width: 100%;
    min-height: 40px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 44px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 14px 32px rgba(6, 36, 93, 0.16);
    backdrop-filter: blur(10px);
  }

  .hero-badge {
    right: 16px;
    bottom: 18px;
    width: 108px;
    height: 108px;
    border-width: 5px;
  }

  .hero-badge span {
    font-size: 14px;
  }

  .hero-badge strong {
    font-size: 21px;
  }

  section:not(.hero) {
    padding: 22px 0;
  }

  .benefits,
  .prices,
  .faq,
  .route {
    width: calc(100% - 28px);
  }

  h2 {
    font-size: 24px;
  }

  .section-heading {
    margin-bottom: 12px;
  }

  .benefit-item,
  .price-card,
  .route-panel {
    padding: 14px;
  }

  .benefit-grid,
  .price-grid,
  .route,
  .faq-list {
    gap: 8px;
  }

  .benefit-grid,
  .price-grid,
  .route {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card {
    min-height: 0;
  }

  .route-content {
    padding: 18px 14px;
    min-height: 0;
  }

  .route-content > p {
    font-size: 14px;
  }

  .route-content h2 {
    font-size: 25px;
  }

  .route-tags {
    gap: 6px;
    margin-top: 10px;
  }

  .route-tags span {
    min-height: 26px;
    padding: 0 8px;
    font-size: 12px;
  }

  .contact-list {
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .contact-list a {
    align-items: flex-start;
    min-height: 0;
  }

  .route-panel {
    padding: 16px;
  }

  .panel-title {
    font-size: 24px;
  }

  .route-step {
    min-height: 0;
    padding: 10px 10px 10px 54px;
  }

  .route-step span {
    width: 32px;
    height: 32px;
  }

  .footer {
    flex-direction: column;
    gap: 6px;
    padding-bottom: 78px;
  }

  .floating-call {
    display: grid;
  }
}
