:root {
  --bg: #e6eef1;
  --bg-deep: #d5e2e7;
  --ink: #10232b;
  --ink-soft: #3a5360;
  --accent: #0d7377;
  --accent-deep: #0a5a5d;
  --signal: #d97706;
  --panel: #f5f9fb;
  --line: #b8ccd4;
  --error: #9b1c1c;
  --header-h: 4.25rem;
  --radius: 6px;
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(13, 115, 119, 0.07) 0%, transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  background-attachment: fixed;
}

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

a {
  color: var(--accent-deep);
}

a:hover {
  color: var(--accent);
}

h1,
h2,
h3,
.header__name,
.footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.main {
  min-height: 60vh;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(230, 238, 241, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.header__mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  background: #0f2a32;
  color: #3db8a8;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}

.header__name {
  font-size: 1.15rem;
}

.header__toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font: inherit;
  cursor: pointer;
}

.header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.header__link:hover,
.header__link--current {
  color: var(--accent-deep);
}

.header__error,
.cookie__error {
  color: var(--error);
  text-align: center;
  margin: 0.35rem 1rem 0.75rem;
  font-size: 0.95rem;
}

.hero-bleed {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #f4fbfa;
  overflow: hidden;
}

.hero-bleed__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-bleed__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 42, 50, 0.35) 0%, rgba(15, 42, 50, 0.82) 70%),
    linear-gradient(90deg, rgba(13, 115, 119, 0.35), transparent 55%);
}

.hero-bleed__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 3.5rem;
  max-width: 38rem;
  animation: rise 0.9s ease both;
}

.hero-bleed__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.hero-bleed__lede {
  margin: 0 0 1.4rem;
  font-size: 1.1rem;
  color: #d7ece9;
}

.hero-bleed h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 1rem;
  color: #f0f7f6;
  letter-spacing: -0.01em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button--ghost:hover {
  background: var(--panel);
  color: var(--ink);
}

.button--veve {
  background: #0f2a32;
  border-color: #0f2a32;
  color: #f0a500;
}

.button--veve:hover {
  background: #163843;
  color: #ffc14d;
}

.section {
  padding: 4rem 0;
}

.section__head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section__head h2,
.page-hero h1 {
  margin-top: 0;
}

.page-hero {
  padding: 2.75rem 0 1.25rem;
}

.page-hero .meta,
.hero__kicker {
  color: var(--accent-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.offer-list {
  display: grid;
  gap: 1.25rem;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 1.25rem;
  align-items: stretch;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.offer__body {
  padding: 1.25rem 1.25rem 1.4rem 0;
}

.offer__body h3 {
  margin: 0 0 0.5rem;
}

.offer__body h3 a {
  text-decoration: none;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.panel {
  background: #0f2a32;
  color: #e7f4f2;
  padding: 1.5rem;
  border-radius: var(--radius);
}

.panel a {
  color: #7ad9cb;
}

.panel h3 {
  margin-top: 0;
  color: #fff;
}

.quote {
  margin: 0;
  padding: 1.5rem;
  background: var(--panel);
  border-left: 4px solid var(--signal);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote footer {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1rem 1.1rem 1.25rem;
}

.card__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.card__body h3 a {
  text-decoration: none;
  color: var(--ink);
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2rem;
}

.cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1rem 0 1.5rem;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
}

.fee-table th,
.fee-table td {
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  text-align: left;
  vertical-align: top;
}

.fee-table th {
  background: #d9e8ec;
  font-family: var(--font-display);
}

.review-list {
  display: grid;
  gap: 1.25rem;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--accent);
}

.timeline li {
  position: relative;
  padding: 0 0 1.5rem 1.35rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--signal);
  border: 2px solid var(--bg);
}

.footer {
  margin-top: 3rem;
  background: #0f2a32;
  color: #d5e7e4;
  padding: 3rem 0 2rem;
}

.footer a {
  color: #8fd9cd;
}

.footer__inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.75rem;
}

.footer__name {
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer__heading {
  margin: 0 0 0.65rem;
  color: #fff;
  font-family: var(--font-display);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.footer__notices {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 0.9rem;
  font-size: 0.88rem;
  color: #a9c4bf;
}

.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  max-width: 720px;
  margin-inline: auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(16, 35, 43, 0.16);
  padding: 1rem 1.15rem;
}

.cookie__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie__text {
  margin: 0;
  flex: 1 1 16rem;
}

.cookie__actions {
  display: flex;
  gap: 0.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-1.5%);
  }
}

@media (max-width: 900px) {
  .offer,
  .split,
  .footer__grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .offer__body {
    padding: 0 1.1rem 1.25rem;
  }

  .header__toggle {
    display: inline-flex;
  }

  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1rem;
  }

  .header__nav.is-open {
    display: block;
  }

  .header__list {
    flex-direction: column;
  }

  .header {
    position: sticky;
  }

  .header__inner {
    position: relative;
  }
}

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

  .hero-bleed__media,
  .hero-bleed__content,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
