:root {
  color-scheme: light;
  --ink: #17302c;
  --muted: #5d706c;
  --paper: #f7f4ed;
  --teal: #19766e;
  --teal-dark: #0f5751;
  --sky: #9bd4d0;
  --coral: #e98b72;
  --gold: #e9c86e;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgb(155 212 208 / 24%), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

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

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  border-radius: 14px 14px 14px 4px;
  background: var(--teal);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.language-switcher form {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgb(23 48 44 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 54%);
}

.language-option {
  min-width: 42px;
  padding: 8px 10px;
  color: var(--muted);
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.language-option.active {
  color: white;
  background: var(--teal);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  min-height: calc(100vh - 190px);
  padding: 60px 0 90px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 7vw, 6.75rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.introduction {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  margin: 34px 0 0;
  padding: 11px 16px;
  color: var(--teal-dark);
  border-radius: 10px;
  background: rgb(155 212 208 / 28%);
  font-size: 0.9rem;
  font-weight: 650;
}

.hero-art {
  position: relative;
  min-height: 460px;
}

.orb,
.path,
.spark {
  position: absolute;
}

.orb {
  border-radius: 50%;
}

.orb-large {
  top: 8%;
  right: 5%;
  width: min(34vw, 390px);
  aspect-ratio: 1;
  background: var(--sky);
  box-shadow: inset -35px -20px 70px rgb(15 87 81 / 11%);
}

.orb-medium {
  right: 60%;
  bottom: 4%;
  width: 132px;
  aspect-ratio: 1;
  background: var(--coral);
}

.path {
  top: 22%;
  right: 7%;
  width: min(32vw, 350px);
  height: 220px;
  border: 18px solid var(--paper);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  rotate: 24deg;
}

.spark {
  width: 18px;
  aspect-ratio: 1;
  border-radius: 5px;
  background: var(--gold);
  rotate: 45deg;
}

.spark-one {
  top: 6%;
  left: 8%;
}

.spark-two {
  right: 0;
  bottom: 17%;
  width: 28px;
  background: var(--teal);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 34px;
  color: var(--muted);
  border-top: 1px solid rgb(23 48 44 / 12%);
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 44px;
  }

  .hero-art {
    order: -1;
    min-height: 260px;
  }

  .orb-large {
    width: 250px;
  }

  .path {
    width: 230px;
    height: 145px;
    border-width: 12px;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 76px;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 72px;
  }

  .hero-art {
    min-height: 210px;
  }

  .orb-large {
    width: 205px;
  }

  .orb-medium {
    width: 88px;
  }

  footer {
    gap: 10px;
    flex-direction: column;
  }
}
