/* Square Inch Garden Company — coming-soon page.
   Colors and type follow the SIGC Brand Style Guide (2026). */

:root {
  /* Brand palette */
  --deep-forest: #1a2e18;  /* Primary text & icon  */
  --garden:      #3d7a32;  /* Primary brand accent */
  --sage:        #7aaa72;  /* Secondary accent     */
  --sprout:      #c8e6a0;  /* Highlight / plant    */
  --dew:         #e8f5e3;  /* Light fills          */

  /* Type system */
  --font-head:   'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-accent: 'Lora', Georgia, 'Times New Roman', serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(2rem, 6vw, 5rem) 1.5rem;
  font-family: var(--font-body);
  color: var(--dew);
  background-color: var(--deep-forest);
  background-image:
    radial-gradient(120% 90% at 50% 0%,   rgba(61, 122, 50, 0.35) 0%, rgba(26, 46, 24, 0) 60%),
    radial-gradient(80% 70% at 50% 120%,  rgba(122, 170, 114, 0.18) 0%, rgba(26, 46, 24, 0) 55%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 44rem;
  animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo {
  width: clamp(88px, 18vw, 132px);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 1.75rem 0 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(0.85rem, 2.4vw, 1.1rem);
  letter-spacing: 0.42em;
  text-indent: 0.42em;          /* offsets trailing letter-spacing to keep it centered */
  text-transform: uppercase;
  color: var(--sage);
}

.wordmark {
  margin: 0.35rem 0 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 11vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.wordmark .garden  { color: var(--sprout); }
.wordmark .company { color: var(--sage); }

.divider {
  width: 88px;
  height: 2px;
  margin: 1.75rem 0 1.5rem;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--garden), transparent);
}

.tagline {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 3.4vw, 1.5rem);
  color: var(--sage);
}

.services {
  margin: 1rem 0 0;
  font-size: clamp(0.7rem, 2vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sprout);
  opacity: 0.85;
}

.status { margin-top: 2.5rem; }

/* Pill badge — Garden Green fill per the guide's tag/badge style. */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background-color: var(--garden);
  color: var(--dew);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: var(--sprout);
}

.message {
  margin: 1.5rem auto 0;
  max-width: 42ch;
  font-size: clamp(1rem, 2.6vw, 1.1rem);
  line-height: 1.65;
  color: rgba(232, 245, 227, 0.78);
}

/* Primary button — Garden Green fill, per the guide's button spec
   (Plus Jakarta Sans 600, 6px radius, 44px min touch target). */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2rem;
  padding: 0.7rem 1.6rem;
  border-radius: 6px;
  background-color: var(--garden);
  color: var(--dew);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.btn:hover {
  background-color: #356d2c;    /* Garden Green darkened ~10% */
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--sprout);
  outline-offset: 2px;
}

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  flex: 0 0 auto;
  text-align: center;
}
.footer-loc {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sprout);
  opacity: 0.7;
}
.footer-copy {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: rgba(122, 170, 114, 0.75);
}

/* Links — Garden Green with the guide's focus ring (2px Garden, 2px offset). */
a {
  color: var(--sprout);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--garden);
  outline-offset: 2px;
  border-radius: 3px;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero { animation: none; }
}
