/* Theme 2 — Editorial / Spotlight */

.t2-page {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

.t2-shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── Header ─────────────────────────────────────── */

.t2-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--header-bg) 88%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  margin-top: 12px;
}

.t2-brand {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--header-text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.t2-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.t2-nav a {
  font-size: 0.82rem;
  font-weight: 650;
  color: color-mix(in srgb, var(--header-text) 60%, transparent);
  text-decoration: none;
  transition: color 0.15s;
}

.t2-nav a:hover {
  color: var(--header-text);
}

/* ── Hero ────────────────────────────────────────── */

.t2-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
  padding-bottom: 8%;
  gap: 56px;
}

.t2-hero__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 640px;
}

.t2-hero__text h1 {
  font-family: var(--hero-font, inherit);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 850;
  line-height: 1.1;
  color: var(--hero-text);
  margin: 0;
}

.t2-tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

.t2-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 10px 22px;
  border: 1.5px solid var(--button-bg);
  border-radius: 999px;
  background: transparent;
  color: var(--button-bg);
  font-size: 0.86rem;
  font-weight: 720;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.t2-cta:hover {
  background: var(--button-bg);
  color: var(--button-text);
}

/* ── Photo strip ─────────────────────────────────── */

.t2-photos {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  align-self: flex-start;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  box-sizing: border-box;
  overflow: visible;
}

.t2-photo {
  width: clamp(100px, 16vw, 210px);
  height: clamp(130px, 21vw, 270px);
  border-radius: 12px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.2);
  transform: rotate(var(--rot, 0deg));
  transform-origin: center bottom;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────── */

.t2-page .site-footer {
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  margin-top: auto;
}

.t2-page .site-footer a {
  color: var(--muted);
}

.t2-page .site-footer a:hover {
  color: var(--ink);
}

/* ── Responsive ──────────────────────────────────── */

@media (max-width: 640px) {
  .t2-nav {
    gap: 16px;
  }

  .t2-photos {
    gap: 6px;
  }

  .t2-photo {
    width: clamp(80px, 18vw, 140px);
    height: clamp(100px, 23vw, 180px);
    border-width: 2px;
  }
}
