/* Root variables */
:root {
  --porcelain: #F4F3EF;
  --ash: #A7A9AC;
  --ink: #1C1C1C;
  --stone: #C6C1B8;
  --sage: #8F9B8A;

  --serif: 'Libre Baskerville', serif;
  --sans: 'Inter', sans-serif;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(244, 243, 239, 0.9);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: var(--serif);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.nav-links {
  list-style: none;
  display: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-tagline {
  max-width: 480px;
  margin: 0 auto 2rem;
  color: #444;
}

.cta {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cta:hover {
  background-color: var(--ink);
  color: var(--porcelain);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section h2 {
  font-family: var(--serif);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

/* Products */
.products {
  background-color: #EFEDE8;
}

.product-grid {
  display: grid;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  text-align: left;
}

.product-image {
  background-color: var(--stone);
  height: 240px;
  margin-bottom: 1.5rem;
}

.product-card h3 {
  font-family: var(--serif);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid #ddd;
  padding: 3rem 1.5rem;
  font-size: 0.8rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--serif);
  letter-spacing: 0.12em;
}

.footer-brand span {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.25rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  text-decoration: none;
  color: var(--ink);
}

.social span {
  margin-right: 0.5rem;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}
