*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 153px;
}

body {
  margin: 0;
  font-family: "Lexend Deca", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #0A2552;
  background: #ffffff;
}

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

a {
  color: #009497;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #115A6F;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: #115A6F;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.wrap {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header-spacer {
  height: 84px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 141px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 90, 111, 0.08);
  transition: height 0.22s ease, box-shadow 0.22s ease;
}

.site-header.is-scrolled {
  height: 84px;
  box-shadow: 0 6px 20px rgba(17, 90, 111, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 125px;
  width: auto;
  max-width: none;
  transition: height 0.22s ease;
}

.site-header.is-scrolled .logo img {
  height: 68px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  color: #115A6F;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
}

.site-nav a:hover, .site-nav a[aria-current=page] {
  background: rgba(174, 225, 228, 0.45);
  color: #115A6F;
}

.btn-nav {
  background: #115A6F !important;
  color: #fff !important;
  margin-left: 0.4rem;
}

.btn-nav:hover {
  background: #0A2552 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #115A6F;
  margin: 5px auto;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(10, 37, 82, 0.78), rgba(17, 90, 111, 0.62)), url("/images/backgrounds/gradient-landscape.jpg") center/cover no-repeat;
  color: #fff;
  padding: clamp(3.2rem, 8vw, 6.2rem) 0;
}

.hero h1 {
  color: #fff;
  max-width: 16ch;
}

.hero .lede {
  font-size: 1.18rem;
  max-width: 46rem;
  color: #f3fbfb;
}

.hero-accent {
  font-family: "Caveat", "Biro Script", cursive;
  font-size: 1.7rem;
  color: #AEE1E4;
  margin-bottom: 0.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: #009497;
  color: #fff;
}

.btn-primary:hover {
  background: #007d80;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #115A6F;
  border-color: #115A6F;
}

.btn-outline:hover {
  background: #115A6F;
  color: #fff;
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-muted {
  background: #f4fbfb;
}

.section-dark {
  background: #115A6F;
  color: #fff;
}

.section-dark h2, .section-dark h3 {
  color: #fff;
}

.kicker {
  font-family: "Caveat", "Biro Script", cursive;
  font-size: 2.5rem;
  color: #009497;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.lead {
  font-size: 1.15rem;
  color: #3d5a6e;
  max-width: 46rem;
}

.grid-2 {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
}

.cards {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

@media (max-width: 1100px) {
  .cards--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.card {
  background: #fff;
  border: 1px solid rgba(17, 90, 111, 0.1);
  border-radius: 12px;
  padding: 1.5rem 1.55rem;
  box-shadow: 0 8px 28px rgba(17, 90, 111, 0.12);
}

.card h3 {
  margin-top: 0;
}

.card.featured {
  border-top: 5px solid #009497;
}

.card.alt {
  border-top: 5px solid #115A6F;
}

.card-more {
  margin: 1rem 0 0;
}

.link-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: #009497;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.link-btn:hover {
  color: #115A6F;
}

.info-dialog {
  border: 0;
  padding: 0;
  border-radius: 12px;
  max-width: min(640px, calc(100vw - 2rem));
  width: 100%;
  box-shadow: 0 24px 60px rgba(10, 37, 82, 0.28);
  color: #0A2552;
}

.info-dialog::backdrop {
  background: rgba(10, 37, 82, 0.55);
  backdrop-filter: blur(2px);
}

.info-dialog__inner {
  position: relative;
  padding: 1.75rem 1.75rem 1.5rem;
}

.info-dialog__close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #115A6F;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.info-dialog__close:hover {
  background: rgba(174, 225, 228, 0.45);
}

.info-dialog h2 {
  margin-right: 2rem;
}

.info-dialog__tag {
  font-family: "Caveat", "Biro Script", cursive;
  font-size: 1.45rem;
  color: #009497;
  margin: -0.2rem 0 1rem;
}

.info-dialog .btn {
  margin-top: 0.4rem;
}

.price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #115A6F;
  line-height: 1.1;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: #3d5a6e;
  display: block;
  margin-top: 0.25rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding: 0 0 1.3rem 3.2rem;
  border-left: 2px solid #AEE1E4;
  margin-left: 0.7rem;
}

.steps li:last-child {
  border-left-color: transparent;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.95rem;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #009497;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.page-hero {
  background: linear-gradient(135deg, #115A6F, #009497);
  color: #fff;
  padding: 3.2rem 0 2.6rem;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  color: #e8f7f8;
  max-width: 42rem;
  margin: 0;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.3rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid #c5d6dc;
  font: inherit;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #009497;
  outline-offset: 1px;
  border-color: #009497;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: 10px;
  margin-bottom: 1.2rem;
}

.alert-ok {
  background: #e6f7f2;
  color: #0b5a45;
}

.alert-err {
  background: #fdecea;
  color: #8a1f11;
}

.site-footer {
  background: #0A2552;
  color: #d7e8ec;
  padding: 3rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}

.site-footer h2 {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer a {
  color: #AEE1E4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.footer-logo {
  width: 190px;
  margin-bottom: 0.8rem;
  filter: none;
}

.footer-tag {
  color: #AEE1E4;
}

.footer-base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.pattern-band {
  background: #115A6F url("/images/backgrounds/pattern-landscape.svg") center/cover;
  min-height: 140px;
}

@media (max-width: 900px) {
  .grid-2, .grid-3, .footer-grid, .form-row, .cards--3 {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-header-spacer {
    height: 72px;
  }

  .site-header {
    height: 88px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .logo img {
    height: 68px;
  }

  .site-header.is-scrolled .logo img {
    height: 52px;
  }

  .header-inner {
    position: relative;
    gap: 1rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid #EBEBEB;
    padding: 1rem;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-nav {
    margin-left: 0;
    text-align: center;
  }

  html {
    scroll-padding-top: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo img, .site-header {
    transition: none;
  }
}

/*# sourceMappingURL=main.css.map */
