/*
Theme Name: HALT Coffee Landing
Theme URI: https://example.com/halt-coffee
Author: HALT Coffee
Description: Temporary landing page theme for HALT Coffee.
Version: 1.0.0
Text Domain: halt-coffee
*/

:root{
  --halt-orange:#AA6452;
  --halt-ink:#2A2929;
  --halt-bg:#F4F2EF;
  --halt-muted:#8B8F94;
  --halt-radius:18px;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.halt-landing{
  min-height: 100vh;
  background: var(--halt-bg);
  color: var(--halt-ink);
  padding: clamp(18px, 3vw, 42px) 14px;
  display: grid;
  align-items: center;
}

.halt-wrap{
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.halt-hero{
  background:#fff;
  border-radius: var(--halt-radius);
  padding: clamp(18px, 4vw, 44px);
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.halt-badge{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(170,100,82,.14);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.halt-logo{
  margin-top: 18px;
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  background: var(--halt-orange);
  border-radius: 10px;
  display:grid;
  place-items:center;
  border: 8px solid rgba(0,0,0,.14);
}

.halt-logo--image{
  background: transparent;
  border: 0;
  border-radius: 0;
  aspect-ratio: auto;
  display: block;
}

.halt-logo span{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  color: var(--halt-ink);
}

.halt-logo__img{
  width: min(360px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
}

.halt-sub{
  margin: 14px 0 0 0;
  font-size: clamp(16px, 2.3vw, 20px);
  opacity: .9;
}

.halt-cats{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.halt-cats span{
  border: 1px solid rgba(42,41,41,.18);
  background: rgba(244,242,239,.9);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.halt-note{
  margin-top: 16px;
  color: var(--halt-muted);
  max-width: 55ch;
}

.halt-cta{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.halt-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none !important;
  border: 1px solid rgba(42,41,41,.18);
}

.halt-btn--primary{
  background: var(--halt-ink);
  color: #fff;
  border-color: var(--halt-ink);
}

.halt-btn--ghost{
  background: transparent;
  color: var(--halt-ink);
}

.halt-meta{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.halt-meta__item{
  background: rgba(244,242,239,.75);
  border: 1px solid rgba(42,41,41,.10);
  border-radius: 14px;
  padding: 12px;
}

.halt-meta__k{
  font-size: 12px;
  color: var(--halt-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}

.halt-meta__v{
  margin-top: 6px;
  font-weight: 800;
}

.halt-footer{
  margin-top: 16px;
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--halt-muted);
  font-size: 14px;
  padding: 0 6px;
}

.halt-footer__right{
  display:flex;
  gap: 12px;
}

.halt-footer a{
  color: var(--halt-muted);
  text-decoration: none;
}

.halt-footer a:hover,
.halt-footer a:focus{
  color: var(--halt-ink);
}

@media (max-width: 720px){
  .halt-meta{
    grid-template-columns: 1fr;
  }

  .halt-footer{
    flex-direction: column;
    align-items: flex-start;
  }
}
