:root {
  --cream: #f7f1df;
  --paper: #fffaf0;
  --forest: #183b2b;
  --fern: #2f663e;
  --leaf-light: #dceaa5;
  --sun: #f4c85a;
  --coral: #e97850;
  --pond: #b9d9cf;
  --font-display: 'Arial Rounded MT Bold', ui-rounded, 'Avenir Next Rounded', 'Trebuchet MS', sans-serif;
  --font-body: 'Avenir Next', Avenir, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--cream);
  color: var(--forest);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, #faf5e7 0%, #f4eddb 56%, #edf0d7 100%);
}

.site-shell::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  content: '';
  opacity: 0.32;
  pointer-events: none;
}

.wash {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.wash-one {
  width: min(48vw, 740px);
  aspect-ratio: 1;
  top: -24vw;
  right: -10vw;
  background: color-mix(in srgb, var(--leaf-light) 44%, transparent);
}

.wash-two {
  width: min(32vw, 470px);
  aspect-ratio: 1;
  bottom: -17vw;
  left: -8vw;
  background: color-mix(in srgb, var(--pond) 43%, transparent);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px 18px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.leaf-badge,
.coming-leaf {
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
}

.leaf-badge {
  width: 48px;
  height: 48px;
  background: var(--forest);
}

.leaf-badge img {
  width: 30px;
  filter: brightness(1.28) saturate(0.9);
}

.domain {
  padding: 8px 14px;
  border: 1px solid rgba(24, 59, 43, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.6);
  color: var(--fern);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: calc(100svh - 178px);
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  padding-block: clamp(42px, 7vh, 90px) 70px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--fern);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--coral);
  font-size: 0.7rem;
}

h1 {
  position: relative;
  z-index: 0;
  width: fit-content;
  max-width: 790px;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
}

h1::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: -3%;
  width: 29%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 200, 90, 0.31);
  content: '';
}

.title-name {
  display: flex;
  align-items: baseline;
  color: var(--forest);
  font-size: clamp(5.2rem, 9vw, 8.65rem);
  letter-spacing: -0.075em;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow:
    0.018em 0.025em 0 #98bd53,
    0.045em 0.065em 0 rgba(24, 59, 43, 0.13);
  transform: rotate(-0.8deg);
  transform-origin: left bottom;
}

.title-name > span {
  display: inline-block;
}

.title-name > :nth-child(1) { transform: translateY(0.015em) rotate(-1deg); }
.title-name > :nth-child(2) { transform: translateY(0.035em) rotate(1.5deg); }
.title-name > :nth-child(3) { transform: translateY(-0.015em) rotate(-0.7deg); }
.title-name > :nth-child(4) { transform: translateY(0.02em) rotate(0.8deg); }
.title-name > :nth-child(5) { transform: translateY(-0.01em) rotate(-1deg); }
.title-name > :nth-child(6) { transform: translateY(0.025em) rotate(1.8deg); }
.title-name > :nth-child(7) { transform: translateY(0.01em) rotate(-0.5deg); }

.title-tagline {
  display: block;
  position: relative;
  margin-top: clamp(24px, 3.4vw, 38px);
  padding-left: clamp(6px, 1vw, 13px);
  letter-spacing: -0.045em;
}

.title-lead,
.title-payoff {
  display: block;
}

.title-lead {
  color: var(--forest);
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 0.9;
}

.title-payoff {
  position: relative;
  width: fit-content;
  margin-top: 0.12em;
  color: var(--fern);
  font-size: clamp(2.35rem, 4.45vw, 4.25rem);
  line-height: 0.92;
}

.title-payoff::after {
  position: absolute;
  z-index: -1;
  right: -0.16em;
  bottom: -0.19em;
  left: 0.05em;
  height: 0.21em;
  border-radius: 50%;
  background: var(--coral);
  content: '';
  opacity: 0.82;
  transform: rotate(-1.2deg);
}

.intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: #3f5948;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.62;
}

.signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.signals li {
  padding: 9px 13px;
  border: 1px solid rgba(47, 102, 62, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  color: var(--fern);
  font-size: 0.82rem;
  font-weight: 750;
}

.coming-soon {
  display: flex;
  max-width: 625px;
  align-items: center;
  gap: 17px;
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid rgba(24, 59, 43, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 18px 50px rgba(45, 72, 48, 0.08);
  backdrop-filter: blur(10px);
}

.coming-leaf {
  width: 45px;
  height: 45px;
  background: var(--leaf-light);
}

.coming-leaf img {
  width: 29px;
}

.coming-soon strong,
.coming-soon small {
  display: block;
}

.coming-soon > span:last-child {
  min-width: 0;
}

.coming-soon strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
}

.coming-soon small {
  margin-top: 3px;
  color: #5b6e60;
  font-size: 0.85rem;
  line-height: 1.45;
}

.hero-visual {
  display: grid;
  justify-items: center;
  margin: 0;
}

.character-card {
  position: relative;
  width: min(100%, 440px);
  padding-top: 54px;
}

.character-card::after {
  position: absolute;
  z-index: -1;
  right: 1%;
  bottom: 4%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 200, 90, 0.28);
  content: '';
}

.character-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 11px 16px;
  border-radius: 14px 14px 14px 4px;
  background: var(--coral);
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(145, 66, 43, 0.19);
  transform: rotate(-2deg);
}

.character-portrait {
  width: 100%;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 24px rgba(49, 84, 45, 0.14));
}

.hero-visual figcaption {
  margin-top: 25px;
  color: var(--fern);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 30px;
  border-top: 1px solid rgba(24, 59, 43, 0.12);
  color: #5f7567;
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

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

  .hero-visual {
    justify-self: center;
    width: min(86vw, 500px);
  }

  .character-card {
    width: min(100%, 470px);
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    padding-top: 20px;
  }

  .domain {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .title-name {
    font-size: clamp(4.25rem, 19.4vw, 6.2rem);
    letter-spacing: -0.085em;
  }

  .title-lead {
    font-size: clamp(1.7rem, 8.6vw, 2.45rem);
  }

  .title-payoff {
    font-size: clamp(1.9rem, 9.1vw, 2.7rem);
    white-space: nowrap;
  }

  .intro {
    margin-top: 25px;
  }

  .coming-soon {
    align-items: flex-start;
    padding: 16px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .character-card {
    animation: gentle-arrival 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-copy > * {
    animation: copy-arrival 520ms ease-out both;
  }

  .hero-copy > :nth-child(2) { animation-delay: 60ms; }
  .hero-copy > :nth-child(3) { animation-delay: 110ms; }
  .hero-copy > :nth-child(4) { animation-delay: 150ms; }
  .hero-copy > :nth-child(5) { animation-delay: 190ms; }
}

@keyframes gentle-arrival {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes copy-arrival {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
