Back to CSS Footer Designs Contact Card Pure CSS
Share
.cf18 {
  width: 100%;
  padding: 48px 32px 22px;
  background: #faf6ed;
  color: #2a2520;
  font-family: ui-serif, Georgia, serif;
  box-sizing: border-box;
}
.cf18b {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(42, 37, 32, 0.18);
}
.cf18contact {
  min-width: 0;
}
.cf18head {
  margin-bottom: 24px;
}
.cf18logo {
  font:
    700 22px/1 ui-serif,
    Georgia,
    serif;
  color: #2a2520;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cf18head p {
  margin: 0;
  font:
    italic 13px/1.4 ui-serif,
    Georgia,
    serif;
  color: #6b6056;
}
.cf18grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-width: 0;
}
.cf18item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}
.cf18ico {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}
.cf18item strong {
  display: block;
  font:
    700 11px/1 ui-sans-serif,
    system-ui;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c43a32;
  margin-bottom: 5px;
}
.cf18item div div {
  font:
    14px/1.55 ui-serif,
    Georgia,
    serif;
  color: #2a2520;
}
.cf18map {
  min-width: 0;
}
.cf18map svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(42, 37, 32, 0.18);
}
.cf18mc {
  margin-top: 10px;
  text-align: center;
  font:
    600 13px/1 ui-sans-serif,
    system-ui;
  color: #c43a32;
  cursor: pointer;
}
.cf18mc:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cf18foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  font:
    italic 12px ui-serif,
    Georgia,
    serif;
  color: #6b6056;
}
.cf18nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.cf18nav a {
  font:
    14px/1 ui-serif,
    Georgia,
    serif;
  color: #2a2520;
  text-decoration: none;
  transition: color 0.2s;
}
.cf18nav a:hover {
  color: #c43a32;
}
@media (max-width: 880px) {
  .cf18b {
    grid-template-columns: 1fr;
  }
  .cf18map svg {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}
@media (max-width: 480px) {
  .cf18grid {
    grid-template-columns: 1fr;
  }
}
<footer class="cf18">
  <div class="cf18b">
    <div class="cf18contact">
      <div class="cf18head">
        <div class="cf18logo">⚐ Northway Studio</div>
        <p>Architecture &amp; interior design · Brooklyn NY</p>
      </div>
      <div class="cf18grid">
        <div class="cf18item">
          <span class="cf18ico">📍</span>
          <div>
            <strong>Visit</strong>
            <div>247 Atlantic Ave<br />Brooklyn, NY 11217</div>
          </div>
        </div>
        <div class="cf18item">
          <span class="cf18ico">📞</span>
          <div>
            <strong>Call</strong>
            <div>+1 (718) 555-0247<br />Mon–Fri 9am–6pm</div>
          </div>
        </div>
        <div class="cf18item">
          <span class="cf18ico">✉</span>
          <div>
            <strong>Email</strong>
            <div>[email protected]<br />[email protected]</div>
          </div>
        </div>
        <div class="cf18item">
          <span class="cf18ico">⏱</span>
          <div>
            <strong>Hours</strong>
            <div>Tue–Sat 10am–5pm<br />Sun–Mon by appointment</div>
          </div>
        </div>
      </div>
    </div>
    <div class="cf18map">
      <svg viewBox="0 0 200 200" aria-hidden="true">
        <rect width="200" height="200" fill="#e6e2d6" />
        <path d="M0 60 L200 80" stroke="#c4bca6" stroke-width="2" fill="none" />
        <path d="M0 120 L200 140" stroke="#c4bca6" stroke-width="2" fill="none" />
        <path d="M40 0 L60 200" stroke="#c4bca6" stroke-width="2" fill="none" />
        <path d="M120 0 L140 200" stroke="#c4bca6" stroke-width="2" fill="none" />
        <path d="M0 100 Q 100 90 200 105" stroke="#a8c5b0" stroke-width="3" fill="none" />
        <circle cx="100" cy="100" r="10" fill="#c43a32" />
        <circle cx="100" cy="100" r="4" fill="#fff" />
      </svg>
      <div class="cf18mc">View directions →</div>
    </div>
  </div>
  <div class="cf18foot">
    <nav class="cf18nav">
      <a href="#">Projects</a>
      <a href="#">About</a>
      <a href="#">Press</a>
      <a href="#">Careers</a>
    </nav>
    <span>© 2026 Northway Studio LLC</span>
  </div>
</footer>
Live preview Edit any tab — preview updates live Ready