/* Bright Blossom Technologies — placeholder site
   Palette (used deliberately, not decoratively):
     #1F4D38  deep forest green  -> background, primary structure
     #6E9B62  sage green         -> supporting text, hairlines
     #E07127  burnt orange       -> the one call to action (email link)
     #F6C46A  warm gold          -> the single accent mark (status dot, divider)
     #FBF3E4  cream               -> wordmark, foreground text on green
     #3B2C1E  dark umber          -> footer / quiet text
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500&display=swap');

:root {
  --forest: #1F4D38;
  --sage:   #6E9B62;
  --orange: #E07127;
  --gold:   #F6C46A;
  --cream:  #FBF3E4;
  --umber:  #3B2C1E;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  background: var(--forest);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(110, 155, 98, 0.28), transparent 45%),
    radial-gradient(circle at 84% 88%, rgba(246, 196, 106, 0.14), transparent 50%),
    linear-gradient(to top, rgba(59, 44, 30, 0.55), transparent 30%);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.scene {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 1.5rem;
}

.frame {
  width: 100%;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2.25rem, 5vw, 3.25rem);
}

/* ---- Wordmark ---- */

.mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.mark__name {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(2rem, 6.2vw, 3.4rem);
  color: var(--cream);
}

.mark__break {
  display: none;
}

.mark__kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1.6vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Content ---- */

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2rem);
}

.tagline {
  max-width: 32rem;
  font-size: clamp(1.02rem, 2.4vw, 1.2rem);
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.92;
}

.divider {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sage);
}

.status__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(246, 196, 106, 0.18);
}

.contact {
  display: inline-block;
  margin-top: 0.25rem;
  padding: 0.85rem 1.9rem;
  background: var(--orange);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.92rem, 2.1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.35rem;
  letter-spacing: 0.01em;
  transition: background-color 0.15s ease, transform 0.15s ease;
}

.contact:hover,
.contact:focus-visible {
  background: var(--umber);
  transform: translateY(-1px);
}

.contact:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---- Footer ---- */

.foot {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(251, 243, 228, 0.45);
}

/* ---- Small screens ---- */

@media (max-width: 30rem) {
  .mark__break {
    display: inline;
  }

  .mark__kicker {
    letter-spacing: 0.09em;
    max-width: 15rem;
  }

  .scene {
    padding: 5vh 1.25rem;
  }

  .frame {
    gap: 2.25rem;
  }
}

/* ---- Reduced motion ---- */

@media (prefers-reduced-motion: reduce) {
  .contact {
    transition: none;
  }
}
