/* PUSH X PULL — matched to pushxpullcoffee.com: mono type, white, all-caps, minimal */
:root {
  --paper: #ffffff;
  --ink: #020912;
  --ink-soft: rgba(2, 9, 18, 0.75);
  --rule: #e5e5e5;
  --mono: "IBM Plex Mono", "GT America Mono Regular", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.95rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-underline-offset: 3px; }
a:hover { color: var(--ink-soft); }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.logo { display: block; }

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem clamp(1.25rem, 5vw, 3rem);
}

.site-title { color: var(--ink); }
.site-title .logo { height: 25px; width: auto; }
.site-title:hover { color: var(--ink-soft); }

.site-header nav { display: flex; gap: 1.75rem; }

.site-header nav a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink-soft);
}
.site-header nav a:hover { color: var(--ink); text-decoration: underline; }

/* Hero */
.hero { padding: 0; }

.hero-img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
}

.hero-copy {
  max-width: 70ch;
  margin: 0 auto;
  padding: 2.5rem clamp(1.25rem, 5vw, 3rem) 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

/* Products */
.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 4rem;
}

.products-heading {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 1.75rem;
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.75rem;
}

.product-card a {
  display: block;
  text-decoration: none;
  color: var(--ink);
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.9rem;
}

.product-card .product-title {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.product-card .product-price {
  display: block;
  margin-top: 0.4rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.product-card a:hover .product-title { text-decoration: underline; }

.products-cta {
  margin-top: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* Order blurb */
.order-blurb {
  border-top: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
  padding: 4rem clamp(1.25rem, 5vw, 3rem);
  text-align: center;
}

.order-blurb-inner {
  max-width: 60ch;
  margin: 0 auto;
}

.order-blurb-heading {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--paper);
  margin: 0 0 1rem;
}

.order-blurb-body {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 2rem;
}

.order-blurb-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--paper);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-family: var(--mono);
  transition: background 0.2s ease, color 0.2s ease;
}

.order-blurb-btn:hover {
  background: var(--paper);
  color: var(--ink);
}

/* Founder */
.founder {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 4.5rem;
}

.founder-heading {
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin: 0 0 1.75rem;
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 2.5rem;
  align-items: start;
}

.founder-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.founder-name {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.founder-copy p { margin: 0 0 1.1rem; }

.founder-link {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-top: 1.6rem;
}

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

/* Content pages */
main { min-height: 55vh; }

.prose {
  max-width: 68ch;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 5rem;
}

.prose h1, .prose h2, .prose h3 {
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 2.6rem 0 0.9rem;
}

.prose h1 { font-size: 1.3rem; margin-top: 1.25rem; }
.prose h2 { font-size: 1rem; }

.prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
}

.prose table { width: 100%; border-collapse: collapse; }

.prose th, .prose td {
  text-align: left;
  border-bottom: 1px solid var(--rule);
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.prose blockquote {
  margin: 1.75rem 0;
  padding: 0.2rem 0 0.2rem 1.25rem;
  border-left: 2px solid var(--ink);
  font-size: 0.9rem;
}

/* Section listings */
.recent ul, .section-list ul { list-style: none; padding: 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 560px) {
  .site-header { flex-direction: column; gap: 0.9rem; }
}
