/* ============================================================
   Stacy Lu — stacylu.com
   Clean static rebuild — no frameworks, no WordPress
   ============================================================ */

/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
  background: #fff;
  line-height: 1.7;
}

a {
  color: #6b8fa3;
  text-decoration: none;
}
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ── Layout container ──────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Header & nav ──────────────────────────────────────────── */
header {
  border-bottom: 1px solid #e8e8e8;
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

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

.site-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #222;
  text-decoration: none;
}
.site-title:hover { text-decoration: none; color: #444; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  color: #555;
  text-transform: none;
}
nav a:hover, nav a.active { color: #222; text-decoration: none; }

/* ── Hero section (home only) ──────────────────────────────── */
.hero {
  padding: 4rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: center;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
  max-width: 540px;
}

.hero-text em { font-style: italic; }

.hero-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.92rem;
  color: #555;
}

.hero-contact .icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.hero-contact a { color: #6b8fa3; }

.hero-photo img {
  border-radius: 2px;
  width: 100%;
  max-width: 380px;
}

/* ── Three-column band (skills/bg/expertise) ───────────────── */
.info-band {
  background: #b8c4ce;
  padding: 2.8rem 0;
  margin-top: 1rem;
}

.info-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.info-band h3 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.info-band p {
  font-size: 0.88rem;
  color: #fff;
  line-height: 1.6;
}

/* ── Recommendations ───────────────────────────────────────── */
.recommendations {
  padding: 3.5rem 0;
  background: #f7f7f7;
}

.recommendations h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #555;
  margin-bottom: 2.5rem;
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.rec-card {
  background: #fff;
  border-radius: 2px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.rec-card blockquote {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
}

.rec-card cite {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  color: #777;
  display: block;
}

/* ── Page header (interior pages) ─────────────────────────── */
.page-header {
  padding: 2.8rem 0 0;
  text-align: center;
}

.page-header h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: -0.01em;
}

/* ── Article list (clips / ghostwriting) ───────────────────── */
.article-list {
  padding: 2.5rem 0 4rem;
  max-width: 780px;
  margin: 0 auto;
}

.article-list .feature-image {
  margin: 0 0 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.article-list .feature-image img {
  width: 100%;
  max-width: 340px;
}

.article-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #efefef;
  line-height: 1.6;
}
.article-item:last-child { border-bottom: none; }

.article-item a {
  font-weight: 600;
  color: #6b8fa3;
  font-size: 1rem;
}

.article-item .blurb {
  color: #444;
  font-size: 0.95rem;
}

.article-item .pub {
  font-style: italic;
  color: #777;
  font-size: 0.9rem;
}

/* ── About page ─────────────────────────────────────────────── */
.about-body {
  padding: 2.5rem 0 4.5rem;
  max-width: 720px;
  margin: 0 auto;
}

.about-body p {
  margin-bottom: 1.3rem;
  font-size: 1rem;
}

.about-body a { color: #6b8fa3; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #e8ecef;
  padding: 1.4rem 0;
  text-align: center;
}

footer p {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  color: #888;
  letter-spacing: 0.02em;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
  }
  .hero-photo img {
    max-width: 280px;
    margin: 0 auto;
  }
  .info-band-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .rec-grid {
    grid-template-columns: 1fr;
  }
  nav ul { gap: 1.2rem; }
}

@media (max-width: 480px) {
  .header-inner { flex-direction: column; gap: 0.8rem; }
  nav ul { gap: 1rem; }
  .page-header h1 { font-size: 1.5rem; }
}
