/* ---------- RESET ---------- */

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

/* ---------- BODY ---------- */

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f2;
  color: #111;
  line-height: 1.6;
}

/* ---------- LINKS ---------- */

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- HEADER ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 6%;
  border-bottom: 1px solid #ddd;
  background-color: #f5f5f2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.main-nav {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
}

.main-nav a:hover {
  opacity: 0.6;
}

/* ---------- HERO ---------- */

.hero {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto 80px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #666;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 30px;
}

.hero p {
  max-width: 700px;
  font-size: 1.1rem;
  color: #444;
}


/* ---------- PROJECT GRID ---------- */

.project-grid {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 50px;
}

.project-card {
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  opacity: 0.92;
}

.project-card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: center;
}

.project-card p {
  color: #555;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* ---------- INFO SECTIONS ---------- */

.info-section {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 120px;
}

.info-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.info-section p {
  margin-bottom: 20px;
  color: #444;
}

/* ---------- FOOTER ---------- */

.site-footer {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid #ddd;
}

.site-footer p {
  color: #666;
  font-size: 0.9rem;
}

/* ---------- PROJECT PAGE ---------- */

.project-page {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;
}

.project-header {
  margin-bottom: 60px;
}

.project-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 20px;
}

.project-header p {
  max-width: 700px;
  color: #444;
  font-size: 1.1rem;
}

.project-images {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-images img {
  width: 100%;
  display: block;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

.project-grid {
  grid-template-columns: 1fr;
}

  .site-header {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav {
    gap: 20px;
  }

  .hero {
    margin-top: 70px;
  }

}

.pdf-link {
  padding: 40px;
  background-color: #fff;
  text-align: center;
  border: 1px solid #ddd;
}

.pdf-link a {
  font-weight: 700;
  text-decoration: underline;
}

.project-images img {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.editorial-spread {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  align-items: start;
}

.editorial-spread img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

@media (max-width: 800px) {
  .editorial-spread {
    grid-template-columns: 1fr;
  }
}

.editorial-layout {
  gap: 70px;
}

.editorial-spread {
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

.editorial-spread img {
  width: 100%;
  max-height: none;
}

.ziggy-layout .project-image-block {
  max-width: 800px;
  margin: 0 auto;
}

.image-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}

.project-image img {
    width: 100%;
    max-width: 900px;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
.comic-layout {
  gap: 70px;
}

.comic-layout > img {
  max-width: 650px;
  max-height: 80vh;
  margin: 0 auto;
}

.comic-spread {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.comic-spread img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

@media (max-width: 800px) {
  .comic-spread {
    grid-template-columns: 1fr;
  }
}

.process-heading {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 80px 0 40px;
    letter-spacing: 0.05em;
}

.project-navigation {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 100px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}

.project-navigation a {
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.project-navigation a:hover {
  opacity: 0.6;
}

@media (max-width: 700px) {
  .project-navigation {
    flex-direction: column;
  }
}


.project-card img {
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
}

.web-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 120px;
}

.web-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.web-section > p {
  max-width: 700px;
  color: #444;
  margin-bottom: 40px;
}

.web-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.web-card {
  padding: 40px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.web-card:hover {
  transform: translateY(-6px);
  opacity: 0.92;
}

.web-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.web-card p {
  color: #555;
}

.web-card img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  display: block;
  margin-bottom: 25px;
  border-radius: 4px;
  background-color: #111;
}

@media (max-width: 800px) {
  .web-grid {
    grid-template-columns: 1fr;
  }
}

