:root {
  --heading: "Futura", "Futura PT", "Century Gothic", "Jost", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --text: #272727;
  --muted: #666;
  --rule: #ddd;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding: 0 100px;
  font-family: var(--body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  background: #fff;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px 40px;
  padding: 80px 0 60px;
}
.logo {
  font-family: var(--heading); font-weight: 700; font-size: 38px; letter-spacing: .02em;
  text-transform: uppercase; text-decoration: none; color: #222; line-height: 1;
}
.site-header nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0 28px; }
.site-header nav a {
  font-family: var(--heading); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; color: #888; font-weight: 400;
}
.site-header nav .active a, .site-header nav a:hover { color: #222; }

h1, h2, h3 {
  font-family: var(--heading); font-weight: 300; text-transform: uppercase; letter-spacing: .06em;
  line-height: 1.35; margin: 0 0 .5em;
}
h1 { font-size: 30px; }
h2 { font-size: 22px; margin-top: 2em; }
h3 { font-size: 16px; }
.text-align-center { text-align: center; }
p { margin: 0 0 1em; }
ul { padding-left: 1.4em; }

.tagline { margin: 0 0 40px; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px 36px; margin-bottom: 100px; }
.card { text-decoration: none; text-align: center; }
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card span {
  display: block; margin-top: 14px; font-family: var(--heading); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; color: #333;
}
.card:hover img { opacity: .9; }

.hero-section h1 { text-align: center; margin-bottom: 40px; }
.hero { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-section a { display: block; }

.narrow { max-width: 620px; margin: 70px auto 0; }
.narrow h1 { font-size: 26px; text-align: left; }
.narrow .store { margin-top: 30px; }
.narrow .store img { width: 200px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.two-col img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.prose { max-width: 820px; }
.prose h3 { font-size: 15px; margin-top: 2em; }

.button {
  display: inline-block; padding: 14px 26px; background: #222; color: #fff; text-decoration: none;
  font-family: var(--heading); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}
.button:hover { background: #444; }
.cta { margin-top: 30px; }

.site-footer {
  margin-top: 120px; padding: 30px 0 60px; border-top: 1px solid var(--rule);
  font-size: 13px; color: var(--muted); max-width: 560px;
}
.site-footer a { text-decoration: none; }

@media (max-width: 900px) {
  body { padding: 0 32px; }
  .site-header { padding: 40px 0 30px; }
  .logo { font-size: 28px; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 560px) {
  body { padding: 0 20px; }
  .grid, .two-col { grid-template-columns: 1fr; }
  h1 { font-size: 24px; }
  .site-footer { margin-top: 60px; }
}
