:root {
  --brown: #1a120b;
  --ink: #2c1e14;
  --terracotta: #c45c26;
  --gold: #e8a838;
  --cream: #f7f1e8;
  --paper: #fffdf8;
  --muted: #5c534c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 6vw;
  background: var(--brown);
  color: var(--cream);
  position: sticky;
  top: 0;
}

.brand {
  display: flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  display: block;
  height: 36px;
  width: auto;
}

.hero-logo {
  display: block;
  height: 52px;
  width: auto;
  margin-bottom: 1.4rem;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--gold);
}

.hero,
.block,
.cta,
footer {
  padding: 4.5rem 6vw;
}

.hero {
  max-width: 46rem;
}

.eyebrow {
  color: var(--terracotta);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: Georgia, "Iowan Old Style", serif;
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 0 0 1rem;
}

.tagline {
  font-family: Georgia, "Iowan Old Style", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  color: var(--terracotta);
  margin: 0 0 1.25rem;
  max-width: 34rem;
}

h2 {
  font-size: 1.85rem;
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store {
  display: inline-flex;
  flex-direction: column;
  background: var(--brown);
  color: var(--cream);
  text-decoration: none;
  padding: 0.7rem 1.15rem;
  min-width: 11.5rem;
}

.store-label {
  font-size: 0.7rem;
  opacity: 0.75;
}

.store-name {
  font-size: 1.05rem;
  font-weight: 650;
}

.store.light {
  background: var(--gold);
  color: var(--brown);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.25rem;
}

.grid li {
  background: var(--paper);
  padding: 1.4rem 1.3rem 1.2rem;
  border-top: 3px solid var(--terracotta);
}

.grid h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.grid p,
.steps {
  margin: 0;
  color: var(--muted);
}

.alt {
  background: var(--paper);
}

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
  max-width: 40rem;
}

.steps li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}

.steps span {
  flex: 0 0 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.85rem;
}

.cta {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
}

.cta p {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: #e4d8c8;
}

.cta h2 {
  color: var(--gold);
}

.cta .store-row {
  justify-content: center;
}

footer {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  font-size: 0.92rem;
}

footer img {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 0.75rem;
  filter: none;
}

.muted {
  color: var(--muted);
}

@media (max-width: 720px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
  }
}
