/* Maya Lee — warm minimal film vibe */

:root {
  --cream: #faf6ef;
  --cream-deep: #f3ecdf;
  --ink: #4a3f33;
  --ink-soft: #7a6a58;
  --accent: #c08a4e;
  --card: #fffdf9;
  --line: #e8ddcc;
}

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

body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}

h2 {
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  color: var(--ink);
}
h2::before {
  content: "✳ ";
  color: var(--accent);
  font-size: 1rem;
}

/* ---------- hero ---------- */
.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--card);
  box-shadow: 0 12px 40px rgba(120, 90, 50, 0.18);
}

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero h1 {
  font-size: 2.6rem;
  margin: 0.25rem 0;
}

.tagline {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.hero-links {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.hero-links a {
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}
.hero-links a:hover { background: var(--accent); transform: translateY(-1px); }

/* ---------- sections ---------- */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem 1.25rem 3rem;
}

section { margin-bottom: 3rem; }

.about p {
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}

/* ---------- gallery ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.grid figure {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s;
}
.grid figure:hover { transform: translateY(-3px); }

.grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.grid figcaption {
  padding: 0.6rem 0.8rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: Georgia, serif;
}

/* ---------- currently ---------- */
.currently ul { list-style: none; }

.currently li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  margin-bottom: 0.8rem;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--accent);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.5rem;
}

.desc { display: block; font-size: 0.98rem; color: var(--ink); }

/* ---------- find me ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.card {
  background: var(--ink);
  color: var(--cream);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  text-decoration: none;
  transition: transform 0.25s, background 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.card:hover { transform: translateY(-3px); background: #5a4c3c; }

.card-name { font-family: Georgia, serif; font-size: 1.25rem; }
.card-handle { font-size: 0.9rem; opacity: 0.75; }
.card-desc { font-size: 0.9rem; opacity: 0.85; margin-top: 0.35rem; }

/* ---------- footer ---------- */
footer {
  text-align: center;
  padding: 2rem 1.25rem 2.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}
footer .tiny { font-size: 0.75rem; margin-top: 0.3rem; opacity: 0.7; }

/* ---------- larger screens ---------- */
@media (min-width: 700px) {
  .hero {
    flex-direction: row;
    text-align: left;
    gap: 2.5rem;
    padding-top: 4rem;
  }
  .hero-photo img { width: 280px; height: 280px; }
  .hero h1 { font-size: 3.2rem; }
  .hero-links { justify-content: flex-start; }
  .grid { grid-template-columns: 1fr 1fr; }
}
