/* Basic reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body + typography */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  color: #111;
  background-color: #ffffff;
}

/* Layout helpers */
.section {
  padding: 1.75rem 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

/* Header */
.site-header {
  text-align: center;
  padding: 1.5rem 1.25rem 0.75rem;
}

.logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
}

.site-header h1 {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.95rem;
  color: #555;
}

/* Hero */
.hero h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Shop preview */
.shop .section-text {
  margin-bottom: 1rem;
}

/* Mobile-first icon layout */
.icon-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-card {
  text-align: center;
}

.icon-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border: 2px solid #000;
  border-radius: 12px;
  padding: 0.4rem;
  margin-bottom: 0.5rem;
}

.icon-card figcaption {
  font-size: 0.9rem;
  color: #333;
}

/* Manifesto */
.manifesto {
  background-color: #f6f6f6;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.manifesto h2 {
  margin-bottom: 0.5rem;
}

.manifesto p + p {
  margin-top: 0.5rem;
}

/* Newsletter */
.newsletter form {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter input {
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.newsletter button {
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  border: none;
  background-color: #111;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem 1.25rem 2rem;
  font-size: 0.8rem;
  color: #666;
}

/* Small accessibility helpers */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Slightly wider layout on tablet+ */
@media (min-width: 640px) {
  .section {
    padding: 2.25rem 1.5rem;
  }

  .icon-row {
    flex-direction: row;
    justify-content: space-between;
  }

  .icon-card {
    flex: 1 1 0;
  }
}
