/* ---------------------------------------------
   Amanda Studnicki — shared minimalist stylesheet
--------------------------------------------- */

:root {
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e5e5e5;
  --bg: #ffffff;
  --accent: #1a1a1a;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / Nav ---------- */

header.site-header {
  border-bottom: 1px solid var(--border);
  padding: 32px 0 24px;
  margin-bottom: 48px;
}

.site-title {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text);
  display: block;
  margin-bottom: 20px;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav.site-nav a:hover,
nav.site-nav a.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

/* ---------- Typography ---------- */

h1 {
  font-weight: 300;
  font-size: 34px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

h2 {
  font-weight: 400;
  font-size: 22px;
  margin: 48px 0 16px;
}

h3 {
  font-weight: 500;
  font-size: 17px;
  margin: 0 0 6px;
}

p {
  margin: 0 0 16px;
}

a {
  color: var(--accent);
}

.subtitle {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 32px;
}

.eyebrow {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 500;
}

/* ---------- Cards / lists ---------- */

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 20px;
}

.card p:last-child {
  margin-bottom: 0;
}

ul.plain {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.plain li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

ul.plain li:last-child {
  border-bottom: none;
}

.entry-title {
  font-weight: 400;
  margin-bottom: 2px;
}

.entry-meta {
  color: var(--muted);
  font-size: 14px;
}

/* ---------- Photo grid ---------- */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 600px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.photo-slot {
  aspect-ratio: 4 / 5;
  border: 1px dashed var(-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #fafafa;
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-slot {
  aspect-ratio: 6 / 4;
  border-radius: 1px;
  overflow: hidden;
  position: relative;
  background: #fafafa;
}
.app-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ---------- Video list ---------- */

.video-link {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.video-link:last-child {
  border-bottom: none;
}

.video-link .entry-title {
  color: var(--text);
}

.video-link .entry-meta {
  color: var(--muted);
}

.video-slot {
  aspect-ratio: 8 / 4;
  border: 1px dashed var(-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #fafafa;
}

.video-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Blog ---------- */

.post-placeholder {
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 16px;
  color: var(--muted);
}

/* ---------- Footer ---------- */

footer.site-footer {
  margin-top: 64px;
  padding: 24px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

footer.site-footer a {
  color: var(--muted);
}

main {
  padding-bottom: 24px;
}
