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

:root {
  --tn-bg: #1c5d6c;
  --tn-accent: #2daaa0;
  --tn-muted: rgba(255,255,255,0.55);
  --az-bg: #8757a8;
  --az-accent: #8757a8;
  --az-muted: rgba(255,255,255,0.55);
  --text: #1a1a1a;
  --muted: #666;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: #fafafa;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid #e0e0e0;
}

.header-lockup {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #e0e0e0;
}

.header-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.header-text p {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .header-lockup { flex-direction: column; text-align: center; }
}

main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

@media (max-width: 680px) {
  main { grid-template-columns: 1fr; }
}

.venture {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.venture.tn { background: var(--tn-bg); color: #fff; }
.venture.az { background: var(--az-bg); color: #fff; }

.venture .tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

.tn .tag { color: var(--tn-accent); }
.az .tag { color: #f8c53d; letter-spacing: 0.18em; }

.venture h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.tn p { color: rgba(255,255,255,0.82); }
.az p { color: rgba(255,255,255,0.82); }

.venture p {
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 38ch;
}

.tn .detail { color: var(--tn-muted); font-style: italic; font-size: 0.88rem; line-height: 1.6; }
.az .detail { color: var(--az-muted); font-style: italic; font-size: 0.88rem; line-height: 1.6; }

.venture a {
  display: inline-block;
  margin-top: auto;
  padding: 0.65rem 1.4rem;
  border: 1.5px solid;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}

.tn a { background: #2daaa0; border-color: #2daaa0; color: #1c5d6c; font-weight: 400; }
.tn a:hover { background: #d5ebe6; border-color: #d5ebe6; color: #1c5d6c; }

.tn { border-left: 5px solid #2daaa0; }
.az { border-left: 5px solid #f8c53d; }

.az a { background: #f8c53d; border-color: #f8c53d; color: #4a2a6a; font-weight: 400; }
.az a:hover { background: #ffd966; border-color: #ffd966; color: #4a2a6a; }

footer {
  padding: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-top: 1px solid #e0e0e0;
  text-align: center;
}