:root {
  --bg: #d8e2e1;
  --bg-strong: #c7d4d2;
  --ink: #0e2128;
  --ink-soft: rgba(14, 33, 40, 0.76);
  --surface: rgba(239, 245, 244, 0.88);
  --surface-strong: #edf4f2;
  --surface-muted: #d8e4e2;
  --line: rgba(14, 33, 40, 0.12);
  --accent: #245961;
  --accent-deep: #163f45;
  --accent-soft: #bfd3d1;
  --sage: #456764;
  --shadow: 0 26px 62px rgba(11, 28, 34, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(18, 49, 54, 0.42), transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(38, 60, 58, 0.32), transparent 24%),
    linear-gradient(180deg, #b9c8c5 0%, #9eafab 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

.page-blur {
  position: fixed;
  z-index: 0;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top, rgba(36, 89, 97, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(130, 148, 144, 0.95), rgba(106, 122, 119, 0.98));
  transition:
    opacity 560ms ease,
    visibility 560ms ease;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.loader-mark {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(237, 244, 242, 0.9);
}

.loader-orbit {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  border: 1px solid rgba(237, 244, 242, 0.28);
}

.loader-orbit::before,
.loader-orbit::after {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(237, 244, 242, 0.18);
}

.loader-orbit::after {
  inset: -0.55rem;
  border-color: rgba(237, 244, 242, 0.12);
}

.loader-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  margin: -0.5rem 0 0 -0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4faf8 0%, #b8d2cf 100%);
  box-shadow:
    0 0 0 0 rgba(244, 250, 248, 0.26),
    0 0 40px rgba(244, 250, 248, 0.32);
  animation:
    pulse 1.6s ease-in-out infinite,
    orbit 1.9s linear infinite;
  transform-origin: 0 0;
}

.loader-text {
  margin: 0;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(237, 244, 242, 0.84);
}

body.is-ready .loader {
  opacity: 0;
  visibility: hidden;
}

.page-blur-left {
  top: -8rem;
  left: -10rem;
  background: rgba(18, 49, 54, 0.44);
}

.page-blur-right {
  right: -10rem;
  bottom: 8rem;
  background: rgba(38, 60, 58, 0.38);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 2rem;
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    filter 560ms ease;
}

body.is-loading .site-shell {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(12px);
}

.hero,
.destinations,
.site-footer {
  animation: rise 700ms ease forwards;
  opacity: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  margin-top: 1rem;
  background:
    linear-gradient(145deg, rgba(237, 244, 242, 0.96), rgba(224, 235, 232, 0.94)),
    rgba(239, 245, 244, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  text-wrap: balance;
}

.hero-text {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #f5fbfb;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 30px rgba(22, 63, 69, 0.28);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 28px;
  background: #bdd0cd;
  box-shadow: 0 24px 48px rgba(11, 30, 34, 0.2);
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 24, 0.04), rgba(12, 20, 24, 0.24));
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 16s ease-in-out infinite alternate;
}

.hero-caption {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: rgba(191, 211, 209, 0.68);
  color: var(--ink-soft);
  line-height: 1.65;
}

.destinations {
  margin-top: 1.6rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(214, 226, 223, 0.98), rgba(203, 216, 213, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 22px 52px rgba(8, 24, 27, 0.14);
  animation-delay: 120ms;
}

.section-heading h2 {
  margin-top: 0.2rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading .eyebrow {
  color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(14, 33, 40, 0.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(244, 248, 247, 0.98), rgba(231, 239, 237, 0.98));
  box-shadow: 0 18px 40px rgba(4, 16, 20, 0.14);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(4, 16, 20, 0.24);
}

.card-alt {
  background:
    linear-gradient(180deg, rgba(238, 245, 243, 0.98), rgba(224, 234, 231, 0.98));
}

.card-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(242, 247, 246, 0.94), rgba(217, 229, 227, 0.94));
}

.card-logo {
  object-fit: contain;
}

.card-logo-3pee {
  max-height: 140px;
}

.card-logo-campplus {
  max-height: 150px;
}

.card-body {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.card-kicker {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.card h3 {
  font-size: 2rem;
  line-height: 1.02;
}

.card p {
  margin: 0;
  line-height: 1.72;
  color: var(--ink-soft);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0.2rem 0 0;
  list-style: none;
}

.tag-list li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.82rem;
  color: rgba(18, 37, 45, 0.78);
}

.card-link {
  margin-top: 1.3rem;
  width: fit-content;
  border: 1px solid rgba(18, 37, 45, 0.12);
  background: #edf4f2;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0.35rem 0;
  color: rgba(18, 37, 45, 0.66);
  font-size: 0.92rem;
  animation-delay: 220ms;
}

.site-footer p {
  margin: 0;
}

a:focus-visible {
  outline: 3px solid rgba(47, 108, 116, 0.35);
  outline-offset: 4px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1) translateY(0);
  }

  to {
    transform: scale(1.06) translateY(-1.25%);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(244, 250, 248, 0.22),
      0 0 34px rgba(244, 250, 248, 0.22);
  }

  50% {
    box-shadow:
      0 0 0 16px rgba(244, 250, 248, 0),
      0 0 44px rgba(244, 250, 248, 0.34);
  }
}

@keyframes orbit {
  from {
    transform: rotate(0deg) translateX(2.05rem) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(2.05rem) rotate(-360deg);
  }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-photo-frame {
    aspect-ratio: 16 / 10;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 1160px);
    padding-top: 0.5rem;
  }

  .hero,
  .destinations {
    padding: 1.25rem;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .hero-text,
  .card p {
    font-size: 0.98rem;
  }

  .button,
  .card-link {
    width: 100%;
  }

  .hero-photo-frame {
    aspect-ratio: 16 / 11;
  }

  .card-logo-wrap {
    min-height: 180px;
  }

  .card h3 {
    font-size: 1.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  body.is-loading .site-shell {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
