:root {
  --text-primary: #1a1a1a;
  --text-secondary: #6f6f6f;
  --border: #e6e6e6;
  --card-bg: #fafafa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Courier, Arial, sans-serif;
  background: #ffffff;
  color: var(--text-primary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

/* HERO */
.hero {
  text-align: center;
  margin-bottom: 64px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

/* SECTION TITLE */
.section-title {
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* PORTFOLIO */
.video-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* CONTACT */
.contact {
  margin-top: 96px;
  text-align: center;
}

.contact h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}

.contact-info a {
  color: var(--text-primary);
  font-size: 20px;
  text-decoration: none;
}

.contact-info span {
  color: var(--text-secondary);
}

/* MOBILE */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 28px;
  }
}
