:root {
  --ink: #102c3a;
  --muted: #5f7380;
  --paper: #f5f8f9;
  --white: #ffffff;
  --blue: #087f98;
  --blue-bright: #12a4bf;
  --orange: #f47d3b;
  --mint: #a8ead9;
  --line: rgba(16, 44, 58, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(168, 234, 217, 0.22), transparent 38%),
    var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
}

a { color: inherit; }

.page-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.34;
  pointer-events: none;
}

.page-glow-one {
  top: -20rem;
  right: -12rem;
  background: radial-gradient(circle, #7dd8e8, transparent 68%);
}

.page-glow-two {
  bottom: -23rem;
  left: -14rem;
  background: radial-gradient(circle, #ffc5a5, transparent 68%);
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
}

.brand-mark span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 5px solid var(--blue);
  border-radius: 50%;
  background: var(--paper);
}

.brand-mark span:nth-child(1) { left: 0; top: 2px; }
.brand-mark span:nth-child(2) { right: 0; top: 2px; border-color: var(--orange); }
.brand-mark span:nth-child(3) { left: 8px; bottom: 0; border-color: var(--blue-bright); }

.brand-mark.large { transform: scale(1.75); }
.brand-mark.large span { background: #eaf7f7; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2abb8a;
  box-shadow: 0 0 0 5px rgba(42, 187, 138, 0.12);
}

.hero {
  min-height: 630px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(35px, 7vw, 100px);
  padding: 50px 0 75px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(3.25rem, 6.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.coming-card {
  width: fit-content;
  max-width: 520px;
  margin-top: 32px;
  padding: 16px 20px 16px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(8, 127, 152, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 45px rgba(38, 77, 89, 0.08);
  backdrop-filter: blur(12px);
}

.coming-card p { margin: 3px 0 0; color: var(--muted); font-size: 0.84rem; }

.coming-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  color: white;
  background: var(--orange);
  font-size: 1.25rem;
  font-weight: 800;
}

.scene {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(8, 127, 152, 0.12);
  border-radius: 48% 52% 45% 55% / 53% 44% 56% 47%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0 21%, transparent 22%),
    linear-gradient(150deg, rgba(180, 235, 228, 0.74), rgba(206, 239, 246, 0.5));
  box-shadow: inset 0 0 80px rgba(255,255,255,.55), 0 35px 80px rgba(27, 99, 112, 0.13);
}

.scene::before,
.scene::after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(8, 127, 152, 0.14);
  transform-origin: left center;
}

.scene::before { width: 68%; left: 17%; top: 48%; transform: rotate(-24deg); }
.scene::after { width: 59%; left: 24%; top: 47%; transform: rotate(38deg); }

.orbit {
  position: absolute;
  inset: 16%;
  border: 1px dashed rgba(8, 127, 152, 0.21);
  border-radius: 50%;
}

.orbit-two { inset: 30%; }

.center-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  transform: translate(-50%, -50%) rotate(4deg);
  box-shadow: 0 20px 45px rgba(23, 89, 102, .16);
}

.activity-card {
  position: absolute;
  z-index: 2;
  min-width: 205px;
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(16,44,58,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.89);
  box-shadow: 0 16px 35px rgba(35, 90, 102, .12);
  backdrop-filter: blur(12px);
}

.activity-card strong,
.activity-card small { display: block; }
.activity-card strong { font-size: .84rem; }
.activity-card small { margin-top: 2px; color: var(--muted); font-size: .67rem; }

.activity-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(8,127,152,.1);
  color: var(--blue);
}

.card-walk { left: -4%; top: 16%; transform: rotate(-3deg); }
.card-coffee { right: -8%; top: 31%; transform: rotate(3deg); }
.card-games { left: 6%; bottom: 12%; transform: rotate(2deg); }

.map-pin {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 5px;
  border: 3px solid white;
  border-radius: 50% 50% 50% 12px;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(8,127,152,.25);
  transform: rotate(-45deg);
}

.map-pin span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e1f5f5;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 800;
  transform: rotate(45deg);
}

.pin-one { right: 14%; top: 11%; }
.pin-two { right: 12%; bottom: 13%; background: var(--orange); }
.pin-three { left: 30%; top: 34%; width: 42px; height: 42px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles article {
  padding: 34px clamp(20px, 3vw, 42px) 38px;
  border-right: 1px solid var(--line);
}

.principles article:first-child { padding-left: 0; }
.principles article:last-child { border-right: 0; }
.principles span { color: var(--orange); font-size: .72rem; font-weight: 800; }
.principles h2 { margin: 12px 0 8px; font-size: 1.05rem; }
.principles p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }

footer {
  min-height: 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .76rem;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 30px; }
  .hero-copy { text-align: center; }
  .hero-intro, .coming-card { margin-inline: auto; }
  .scene { width: min(570px, 92%); margin-inline: auto; }
}

@media (max-width: 620px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .site-header { min-height: 76px; }
  .status-pill { padding: 7px 10px; font-size: .68rem; }
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  .hero { min-height: auto; gap: 50px; padding-bottom: 52px; }
  .scene { min-height: 400px; border-radius: 38px; }
  .activity-card { min-width: 168px; padding: 10px; }
  .card-walk { left: -3%; top: 12%; }
  .card-coffee { right: -5%; top: 39%; }
  .card-games { left: 1%; bottom: 8%; }
  .pin-three { display: none; }
  .principles { grid-template-columns: 1fr; }
  .principles article,
  .principles article:first-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principles article:last-child { border-bottom: 0; }
  footer { flex-wrap: wrap; justify-content: center; padding: 28px 0; text-align: center; }
  .footer-note { width: 100%; order: -1; }
}

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