/* =========================
   HEADER
========================= */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.logo {
  height: 6rem;
  margin: 0 auto 1.5rem;
}

.tagline {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.headerAdditional{
   font-size: .75rem;
  color: #555;
  line-height: 1.6;
  width: 75%;
  margin: 0 auto;
}

/* =========================
   PAGE BACKGROUND
========================= */
body {
  background: #f7f7f8;
  font-family: system-ui, sans-serif;
  background: #f7f7f8;
  color: #111;
}

.hidden {
  display: none;
}

.card {
  background: white;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.thumbnail {
  position: relative;
  height: 12rem;
  cursor: pointer;
}

.thumbnail img,
.thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  letter-spacing: .08em;
}
/* =========================
   LINKS
========================= */
.links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  text-align: center;
  gap: 0.75rem;
}

.link-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main link */
.custom-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: #d27403;
  text-decoration: none;
  position: relative;
}

.custom-link:hover {
  text-decoration: underline;
}

/* Disabled but visible */
.custom-link.disabled {
  color: #9ca3af;
  pointer-events: none;
}

/* Coming soon microtext */
.coming-soon {
  font-size: 0.65rem;
  margin-top: 0.15rem;
  color: #9ca3af;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}


/* =========================
   CARD TEXT
========================= */
.card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.mechanics {
  font-style: italic;
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.4rem;
}

.status {
  font-size: 0.85rem;
  color: #444;
  margin-top: 0.35rem;
}


/* =========================
   LINK ICON DOTS
========================= */
.link-icons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.icon-dot {
  width: 6px;
  height: 6px;
  background: #bbb;
  border-radius: 50%;
}


/* =========================
   MUTED CARDS
========================= */
.card-muted {
  opacity: 0.5;
}

.card-muted:hover {
  transform: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
}

.custom-link::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: white;
  font-size: 0.7rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
  
}

.custom-link:hover::after {
  opacity: 1;
}


.projects {
  margin-top: 4.5rem;
}
