@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

* { box-sizing: border-box; }

:root {
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}

/* nested headings inherit the heading font automatically;
   this just tunes size/weight as they go deeper */
h1 { font-size: 3rem; font-weight: 600; }
h2 { font-size: 1.4rem; font-weight: 500; }
h3 { font-size: 1.1rem; font-weight: 500; }

p, li {
  font-family: var(--font-body);
  font-weight: 400;
}

nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #ddd;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

nav a {
  color: #111;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}
.nav-photo {
  height: 1.5rem;
  align-self: stretch;
  width: auto;
  display: block;

}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.title-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.title-photo {
  height: 80px;
  width: auto;
  display: block;
}

.title-row .site-title {
  font-size: 3rem;
  margin: 0;
}

.title-row .site-title .subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: #555;
  margin-left: 0.5rem;
}

.subtitle {
  font-family: var(--font-body);
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}
.stub {
  font-family: var(--font-body);
  color: #888;
  font-style: italic;
}

.footnote {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: italic;
  font-weight: 400;
  color: #888;
}

.positioning {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.project-card {
  border: 1px solid #ddd;
  padding: 1.25rem;
  font-family: var(--font-body);
  text-align: center;
}

.project-card a {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #111;
  text-decoration: none;
  font-size: 1.1rem;
}

.project-card:hover {
  text-decoration: underline;
  background: #f7f7f7;
  border-color: #999;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #eee;
  margin-bottom: 0.75rem;
}

.hook {
  font-family: var(--font-body);
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
}

.inline-image {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
  margin: 0 1rem 1rem 0;
}

figure {
  margin: 0 0 1.5rem;
}

figcaption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: italic;
  color: #888;
  text-align: center;
  margin-top: 0.5rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
 
.photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

.photo-grid video {
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}
 

video {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  background: #000;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
  background: #000;
}
 
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.launch-card {
  display: block;
  text-decoration: none;
  margin-bottom: 2rem;
}
 
.launch-card-inner {
  background: #111;
  color: #fff;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.15s ease;
}
 
.launch-card:hover .launch-card-inner {
  background: #333;
}
 
.launch-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
}
 
.launch-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #aaa;
}

section {
  margin-bottom: 2.5rem;
}

section h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.5rem;
}

section h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 0.4rem;
}

/* section h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
} */

