:root {
  --header-bg: #13151d;
  --text: #595959;
  --heading: #191919;
  --muted: #bfbfbf;
  --widget: #707070;
  --accent: #f0437e;
  --border: #ebebeb;
  --max: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.site-header {
  background: var(--header-bg);
  width: 100%;
}

.header-inner {
  max-width: none;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  display: block;
  height: auto;
  width: min(280px, 70vw);
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 8px 4px;
}

.header-inner .contact-btn {
  color: #fff;
}

.header-inner .contact-btn:hover {
  color: var(--accent);
}

.site-content {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.entry-title {
  font-size: 36px;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 28px;
}

.hero {
  text-align: center;
}

.hero img {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 1024px;
  height: auto;
}

.footer-widgets {
  padding: 80px 20px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.footer-widgets p {
  margin: 0 0 0.4em;
  color: var(--widget);
}

.footer-widgets .company-note {
  color: var(--muted);
  margin-top: 1.2em;
}

.widget-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading);
  margin: 0 0 40px;
}

.footer-widgets .contact-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  padding: 12px 28px;
  border-radius: 2px;
}

.footer-widgets .contact-btn:hover {
  filter: brightness(1.05);
}

.site-info {
  padding: 15px 20px;
  color: #595959;
  font-size: 13px;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  text-align: center;
}

@media (max-width: 767px) {
  .header-inner {
    padding: 14px 16px;
  }

  .entry-title {
    font-size: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-widgets {
    padding: 48px 20px;
  }
}
