:root {
  --bg: #f6f3ee;
  --bg-dark: #1a1714;
  --text: #1a1714;
  --text-muted: #5c564e;
  --accent: #c45c26;
  --accent-hover: #a34a1c;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(26, 23, 20, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 23, 20, 0.06);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav {
  display: none;
  gap: 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

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

@media (min-width: 720px) {
  .nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.btn:active {
  transform: scale(0.98);
}

.btn--small {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(26, 23, 20, 0.18);
}

.btn--ghost:hover {
  background: rgba(26, 23, 20, 0.04);
  color: var(--text);
}

.hero {
  padding: clamp(3rem, 10vw, 6rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  max-width: 14ch;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.collection,
.story,
.waitlist {
  padding: 4rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.section-head h2,
.story h2,
.waitlist h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
}

.section-head p,
.waitlist > p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.product-card__image {
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.product-card__image--1 {
  background-image: linear-gradient(135deg, #e8dfd4 0%, #c9b8a8 100%);
}

.product-card__image--2 {
  background-image: linear-gradient(135deg, #d4dce8 0%, #9aafc9 100%);
}

.product-card__image--3 {
  background-image: linear-gradient(135deg, #d8e4d4 0%, #8fad8a 100%);
}

.product-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.product-card__price {
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.product-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.story {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .story {
    grid-template-columns: 1fr 1fr;
  }
}

.story-copy p {
  color: var(--text-muted);
  margin: 0;
}

.quote {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-dark);
  color: #f6f3ee;
  border-radius: var(--radius);
  font-size: 1.05rem;
}

.quote footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.waitlist {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 4rem;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 480px;
}

.waitlist-form input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(26, 23, 20, 0.12);
  border-radius: 999px;
  font: inherit;
}

.waitlist-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-message {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message--ok {
  color: #2d6a4f;
}

.form-message--err {
  color: #9b2226;
}

.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(26, 23, 20, 0.08);
}

.site-footer__note {
  margin-top: 0.35rem;
  opacity: 0.7;
}
