:root {
  --bg: #ffffff;
  --text: #050505;
  --text-muted: #666;
  --nw-purple: #4e2a84;
  --border: #e5e5e5;
  --card-bg: #f9f9f9;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-enter {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

/* TYPOGRAPHY */
.northwestern {
  color: var(--nw-purple);
  font-weight: 800;
}

.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #000;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

/* NAVIGATION - APP STYLE */
nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--nw-purple);
}

/* MOBILE NAV: HORIZONTAL SCROLL */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 5px;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }
}

/* HERO SECTION */
.home-hero {
  padding: 10rem 0 6rem;
  text-align: center;
}

.home-hero h1 {
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.hero-bio {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto;
  font-weight: 400;
}

/* IMAGES & CARDS */
.image-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.caption {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-bottom: 4rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.card {
  background: var(--card-bg);
  padding: 4rem 3rem;
  border-radius: 32px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--nw-purple);
  background: #fff;
  box-shadow: 0 30px 60px -15px rgba(78, 42, 132, 0.15);
}

/* POEMS */
.poem-box {
  padding: 5rem 2rem;
  background: #080808;
  color: #fff;
  border-radius: 32px;
  text-align: center;
  margin: 6rem 0;
}

.poem-box p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.8;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* FORMS & MODAL */
.fake-form {
  max-width: 600px;
  margin: 0 auto 8rem;
}

.field {
  margin-bottom: 2rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.fake-form input,
.fake-form textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fdfdfd;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}

.fake-form input:focus,
.fake-form textarea:focus {
  outline: none;
  border-color: var(--nw-purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(78, 42, 132, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--nw-purple);
}

/* SUCCESS MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal {
  background: #fff;
  padding: 3rem;
  border-radius: 24px;
  max-width: 400px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.4s ease forwards;
}

.modal h2 {
  color: var(--nw-purple);
  margin-bottom: 1rem;
}

.close-btn {
  margin-top: 2rem;
  background: #eee;
  color: #000;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

footer {
  padding: 6rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: #bbb;
  border-top: 1px solid var(--border);
}
