:root {
  --bg: #ffffff;
  --text: #111;
  --muted: #666;
  --border: #e5e5e5;
  --accent: #1f4ed8;

  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.brand h1 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.brand p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Buttons */

.button {
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 10px 18px;
  font-weight: 600;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.button:hover {
  background: var(--text);
  color: white;
}

/* Intro */

.intro {
  padding: 70px 0 40px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.intro-text h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 20px;
}

.intro-meta div {
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.intro-meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.intro-meta strong {
  font-weight: 600;
}

/* Video */

.work {
  padding: 40px 0 70px;
}

.video-block {
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.video-block iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact */

.contact {
  padding: 70px 0;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-text h2 {
  font-size: 2rem;
  margin: 0 0 10px;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */

@media (max-width: 900px) {
  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-text h2 {
    font-size: 2rem;
  }
}
