/* ==========================================================================
   Toyo Studio — additions on top of style.css (logo, follow icons, home hero,
   project cards, commissions layout)
   ========================================================================== */

/* Logo lockup ------------------------------------------------------------- */
.ts-logo { display: inline-flex; flex-shrink: 0; }
.ts-logo-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  padding: 8px 16px 7px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ts-logo-box::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--line);
  pointer-events: none;
  transition: border-color 0.3s var(--ease);
}
.ts-logo:hover .ts-logo-box { border-color: var(--orange); }
.ts-logo:hover .ts-logo-box::before { border-color: rgba(255,107,0,0.25); }
.ts-word { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1.15; }
.ts-word strong {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  -webkit-text-stroke: 0.4px var(--ink);
}
.ts-word small {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.015em;
  color: var(--ink);
  white-space: nowrap;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .ts-logo-box { padding: 7px 12px 6px; }
  .ts-word strong { font-size: 11.5px; letter-spacing: 0.09em; }
  .ts-word small { font-size: 11px; font-weight: 600; color: var(--ink); white-space: normal; max-width: 165px; margin-top: 4px; }
}

/* Nav spacing — tighter to fit Home + 6 sections beside the logo -------------- */
/* Scoped to desktop only so it never affects the mobile dropdown menu */
@media (min-width: 901px) {
  .nav-links { gap: 17px; font-size: 11px; }
  .nav-links a { white-space: nowrap; }
  .site-header .container { gap: 14px; }
  .nav-cta { gap: 12px; }
}
@media (min-width: 901px) and (max-width: 1180px) {
  .nav-links { gap: 13px; font-size: 10.5px; }
}

/* Mobile menu — make sure every link is visible, full-width, and easy to tap */
@media (max-width: 900px) {
  .nav-links {
    gap: 18px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    display: block;
    width: 100%;
    white-space: normal;
  }
}

/* Follow icons -------------------------------------------------------------- */
.follow-row { display: flex; align-items: center; gap: 10px; }
.follow-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.follow-icon svg { width: 16px; height: 16px; }
.follow-icon:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.footer-follow-row .follow-icon { color: var(--paper); border-color: rgba(250,247,240,0.28); }
.footer-follow-row .follow-icon:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }

@media (max-width: 900px) {
  .nav-cta .follow-row { display: none; }
}

/* Minimal home hero ---------------------------------------------------------- */
.ts-home-hero { padding: clamp(20px, 3vw, 36px) 0 0; text-align: center; }
.ts-home-hero .eyebrow { justify-content: center; margin-bottom: 18px; }
.ts-home-hero .eyebrow::before { display: none; }
.ts-home-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-style: italic;
  max-width: 820px;
  margin: 0 auto;
}
.ts-home-hero p.lede {
  max-width: 480px;
  margin: 16px auto 26px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.ts-home-hero .hero-actions { justify-content: center; margin-bottom: 40px; }
.ts-home-media {
  max-width: 760px;
  margin: 0 auto 30px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.ts-home-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.ts-home-media .tag {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--paper); padding: 10px 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.ts-home-media .tag strong { color: var(--orange); }

.ts-nav-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 0;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ts-nav-list a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  padding: 0 clamp(14px, 2.4vw, 30px);
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
  position: relative;
}
.ts-nav-list a:not(:last-child)::after {
  content: "+";
  position: absolute;
  right: -4px;
  font-style: normal;
  color: var(--orange);
}
.ts-nav-list a:hover { color: var(--ink); }
@media (max-width: 700px) {
  .ts-nav-list { flex-direction: column; gap: 18px; padding: 36px 0; }
  .ts-nav-list a { text-align: center; padding: 0; }
  .ts-nav-list a::after { display: none; }
}

/* Project cards --------------------------------------------------------------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .project-grid { grid-template-columns: 1fr; } }
.project-card {
  background: var(--paper);
  display: flex;
  flex-direction: column;
}
.project-card .media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-alt);
  position: relative;
}
.project-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-card:hover .media img { transform: scale(1.05); }
.project-card .media.placeholder {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(135deg, var(--paper-alt), var(--paper-alt) 10px, var(--paper) 10px, var(--paper) 20px);
}
.project-card .media.placeholder svg { width: 40px; height: 40px; color: var(--line); }
.project-card .badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; background: var(--paper); color: var(--ink-soft);
}
.project-card .badge.active { background: var(--orange); color: var(--white); }
.project-card .body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.project-card h3 { font-size: 1.6rem; font-style: italic; margin-bottom: 10px; }
.project-card p { color: var(--ink-soft); font-size: 0.94rem; flex: 1; margin: 0 0 18px; }

/* Commissions page ------------------------------------------------------------- */
.offer-list { display: flex; flex-direction: column; }
.offer-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.offer-item:last-child { border-bottom: 1px solid var(--line); }
.offer-item h4 { font-size: 1.25rem; font-style: italic; }
.offer-item p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }
@media (max-width: 640px) { .offer-item { grid-template-columns: 1fr; gap: 6px; } }

/* About highlights list --------------------------------------------------------- */
.highlight-list { display: flex; flex-direction: column; gap: 16px; }
.highlight-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.highlight-row:last-child { border-bottom: none; }
.highlight-row .yr { font-family: var(--font-mono); font-size: 12px; color: var(--terracotta); }
.highlight-row .txt { font-size: 0.98rem; color: var(--ink-soft); }
.highlight-row .txt strong { color: var(--ink); font-weight: 500; }
@media (max-width: 480px) { .highlight-row { grid-template-columns: 1fr; gap: 4px; } }
