/* Indigo & Attar — coming-soon site */
/* Built 2026-06-22 for Hello Alice grant submission */

:root {
  --indigo: #1a2e5a;
  --indigo-deep: #0f1d3d;
  --indigo-light: #2a3f6f;
  --gold: #c8a875;
  --gold-soft: #d4b88a;
  --gold-warm: #b89a6c;
  --cream: #fbf5e9;
  --cream-warm: #f5ecd4;
  --ink: #1f1f1f;
  --ink-soft: #4a4a4a;
}

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

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--cream);
  padding: 2rem 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: subtleZoom 30s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(15, 29, 61, 0.25) 0%,
      rgba(15, 29, 61, 0.55) 50%,
      rgba(15, 29, 61, 0.8) 100%
    );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  animation: fadeUp 1.2s ease-out;
}

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

.wordmark {
  font-family: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: 0.015em;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25em;
  flex-wrap: wrap;
}

.wordmark .word {
  font-weight: 500;
}

.wordmark .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-soft);
  font-size: 0.85em;
  margin: 0 0.05em;
}

.tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  letter-spacing: 0.015em;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.75;
  font-weight: 400;
}

/* ============ STORY ============ */
.story {
  padding: 6rem 2rem;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.story::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.story-inner {
  max-width: 680px;
  margin: 0 auto;
}

.story h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--indigo);
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.story p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.story p strong {
  color: var(--indigo);
  font-weight: 500;
}

.story .values {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--indigo);
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gold-soft);
  line-height: 1.7;
}

/* ============ SIGNUP ============ */
.signup {
  padding: 5rem 2rem;
  background: var(--indigo);
  color: var(--cream);
  text-align: center;
  position: relative;
}

.signup-inner {
  max-width: 600px;
  margin: 0 auto;
}

.signup h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.signup p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.9;
}

.signup a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-warm);
  transition: opacity 0.2s, border-color 0.2s;
  padding-bottom: 1px;
}

.signup a:hover {
  opacity: 0.8;
  border-bottom-color: var(--gold-soft);
}

/* ============ FOOTER ============ */
footer {
  padding: 2.5rem 2rem;
  background: var(--indigo-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.8;
}

footer .footer-text {
  margin-bottom: 0.25rem;
}

footer a {
  color: var(--gold-soft);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .hero {
    min-height: 88vh;
  }
  .story {
    padding: 4rem 1.5rem;
  }
  .signup {
    padding: 4rem 1.5rem;
  }
  .wordmark {
    gap: 0.15em;
  }
}

/* ============ ACCESSIBILITY ============ */
@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }
  .hero-content {
    animation: none;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}
