/* ============================================================
   Da Minha Horta — landing "em breve"
   Paleta tirada do logótipo: verde floresta, verde folha, creme
   ============================================================ */

:root {
  --green-900: #16300d;
  --green-800: #1e3a13;
  --green-700: #2b4d1b;
  --green-500: #4e8234;
  --green-300: #8cb86a;
  --cream:     #f4efe1;
  --cream-dim: #e7dec9;
  --gold:      #d8b15a;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  min-height: 100svh;
  font-family: var(--sans);
  color: var(--cream);
  background: var(--green-900);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* ---------- Camadas de fundo ---------- */
.bg {
  position: fixed;
  inset: 0;
  background: url("assets/bg.jpg") center/cover no-repeat;
  /* desfoca para esconder o "COMING SOON" gravado na foto e dar profundidade */
  filter: blur(40px) brightness(0.8) saturate(1.1);
  transform: scale(1.35);
  animation: drift 32s var(--ease) infinite alternate;
  z-index: -3;
}

.bg-veil {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(22,48,13,0) 0%, rgba(22,48,13,0.55) 62%, rgba(11,26,6,0.92) 100%),
    linear-gradient(180deg, rgba(20,40,12,0.35) 0%, rgba(13,28,7,0.7) 100%);
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: scale(1.35) translate(0, 0); }
  to   { transform: scale(1.4) translate(-1.5%, -1.5%); }
}

/* ---------- Palco ---------- */
.stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
}

.card {
  width: min(560px, 100%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* entrada encenada */
.card > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 1s var(--ease) forwards;
}
.eyebrow   { animation-delay: 0.15s; }
.badge     { animation-delay: 0.30s; }
.wordmark  { animation-delay: 0.48s; }
.tagline   { animation-delay: 0.62s; }
.lede      { animation-delay: 0.76s; }
.sprout    { animation-delay: 0.88s; }
.contacts  { animation-delay: 1.0s; }

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

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--green-300);
  font-weight: 400;
  padding-left: 0.42em; /* compensa o tracking à direita */
}

/* ---------- Emblema do logótipo ---------- */
.badge {
  margin-top: 1.6rem;
  width: clamp(150px, 38vw, 200px);
  height: clamp(150px, 38vw, 200px);
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(244,239,225,0.18),
    0 0 0 9px rgba(244,239,225,0.06),
    0 26px 60px -20px rgba(0,0,0,0.7);
  position: relative;
}
.badge img {
  width: 112%;
  height: 112%;
  object-fit: contain;
}

/* ---------- Wordmark ---------- */
.wordmark {
  margin-top: 1.9rem;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.wordmark span {
  display: block;
  font-size: clamp(1.15rem, 4vw, 1.6rem);
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  font-weight: 500;
}
.wordmark em {
  display: block;
  font-style: italic;
  font-size: clamp(3.4rem, 13vw, 5.4rem);
  color: var(--cream);
  margin-top: 0.06em;
}

/* ---------- Tagline ---------- */
.tagline {
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 3.4vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.01em;
}

/* ---------- Texto ---------- */
.lede {
  margin-top: 1.4rem;
  max-width: 40ch;
  font-size: clamp(0.92rem, 2.6vw, 1rem);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(244,239,225,0.78);
}

/* ---------- Divisória rebento ---------- */
.sprout {
  margin-top: 2.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--green-300);
}
.sprout span {
  display: block;
  width: clamp(36px, 12vw, 64px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140,184,106,0.6), transparent);
}

/* ---------- Contactos ---------- */
.contacts {
  margin-top: 1.9rem;
  display: flex;
  gap: 0.9rem;
}
.contact {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(244,239,225,0.22);
  background: rgba(244,239,225,0.04);
  backdrop-filter: blur(4px);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), color 0.35s var(--ease);
}
.contact:hover {
  transform: translateY(-4px);
  background: var(--cream);
  color: var(--green-800);
  border-color: var(--cream);
}

/* ---------- Rodapé ---------- */
.foot {
  padding: 1.6rem 1.5rem 2rem;
  text-align: center;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,225,0.45);
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
}
.foot .dot { color: var(--green-500); }

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  .bg { animation: none; }
  .card > * { animation: none; opacity: 1; transform: none; }
}
