:root {
  --ink: #16181a;
  --ink-soft: #5b6066;
  --paper: #f7f6f3;
  --paper-raised: #ffffff;
  --line: #e2e0da;
  --signal: #ffc400;
  --signal-ink: #16181a;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 28px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.site-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 70px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
}

.site-name__accent {
  color: var(--signal);
  -webkit-text-stroke: 0.5px var(--ink);
}

/* Signature hazard stripe */
.hazard-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--signal),
    var(--signal) 14px,
    var(--signal-ink) 14px,
    var(--signal-ink) 28px
  );
}

/* Shared section spacing */
.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

/* Video */
.video-section {
  padding: 72px 0 56px;
}

.video-frame {
  background: var(--ink);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 12px 32px rgba(22, 24, 26, 0.14);
}

.video-player {
  width: 100%;
  max-height: 540px;
  display: block;
  border-radius: 3px;
  background: #000;
}

/* Contacts */
.contacts-section {
  padding: 56px 0 80px;
}

.contacts-title {
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contacts-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contacts-item + .contacts-item {
  margin-top: 10px;
}

.contacts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.contacts-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacts-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contacts-item a {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}

.contacts-item a:hover {
  color: var(--signal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Mobile */
@media (max-width: 560px) {
  .site-name { font-size: 19px; }
  .contacts-title { font-size: 24px; }
  .video-section { padding: 48px 0 40px; }
}


/* Description */
.description-section {
  padding: 8px 0 56px;
}

.description-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 640px;
}
