body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw 0 5vw;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
}
.logo {
  height: 36px;
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  display: flex; /* Temporarily hidden - change to 'flex' to show again */
}
.nav-list a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
  font-size: 1.1em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s;
}
.nav-list a.active, .nav-list a:hover {
  color: #c9a14a;
  border-bottom: 2px solid #c9a14a;
}
.hero {
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.hero-mobile {
  display: none;
}

.hero-desktop {
  display: block;
}
main {
  padding: 32px 5vw 0 5vw;
  max-width: 1000px;
  margin: 0 auto;
}
.projects {
  margin-top: 40px;
}
h2 {
  font-size: 2em;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}
.project-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  background: none;
  border-radius: 0;
  padding: 0 0 18px 0;
  color: #222;
  transition: none;
  width: 100%;
  max-width: 400px;
  /* min-width: 180px; */
  margin: 0 auto 0 auto;
}

.project-card img {
  width: 100%;
  aspect-ratio: 883 / 776;
  height: auto;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 0;
  background: #fff;
  display: block;
  min-width: 0;
  min-height: 0;
}
/* .project-card span {
  font-size: 1.08em;
  margin-top: 2px;
} */
.site-footer {
  text-align: center;
  padding: 32px 0 18px 0;
  font-size: 1em;
  color: #888;
  background: #fff;
  margin-top: 48px;
}
.store-buttons {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
}


.project-card .store-icon {
  height: 40px !important;
  width: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: none !important;
  display: inline-block !important;
}


.jigsaw-card .store-icon {
  height: 42px !important;
  width: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: none !important;
  display: inline-block !important;
}

.project-title {
  font-size: 1.13em;
  font-weight: bold !important;
  padding-top: 8px;
  display: block;
  margin-bottom: 2px;
  text-align: left;
}
.project-desc {
  font-size: 1.2em;
  color: #444;
  padding-bottom: 8px;
  text-align: left;
  display: block;
  white-space: pre-line;
  /*line-height: 1; /*1.4;*/
}
.coming-soon {
  font-size: 0.92em;
  color: #fff;
  background: #888;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0px;
  display: inline-block;
  text-align: left;
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}
.nav-social-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-social-icon:hover {
  opacity: 1;
}
.contact-section {
  text-align: center;
  margin: 48px 0 0 0;
}
.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 24px;
}
.contact-links li {
  display: inline;
}
.contact-links a {
  color: #222;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1em;
  transition: color 0.2s;
}
.contact-links a:hover {
  color: #c9a14a;
}
.section-divider {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 48px 0 32px 0;
  width: 100%;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.social-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.social-icon img:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px) scale(1.08);
}
@media (max-width: 600px) {


.jigsaw-card .store-icon {
  height: 30px !important;
  width: auto !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: none !important;
  display: inline-block !important;
}


  .site-header, main {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .project-desc {
    font-size: 1.0em;
    color: #444;
    padding-bottom: 8px;
    text-align: left;
    display: block;
  }

  .site-header {
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
    align-items: center;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    font-size: 1.2em;
    padding: 8px 0;
    width: 100%;
    display: block;
    border-bottom: none;
    text-align: center;
  }
  .contact-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .contact-links a {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
  
  .logo {
    height: 54px;
  }
  
  .hero-mobile {
    display: block;
  }
  
  .hero-desktop {
    display: none;
  }
} 