/* Repurposed Wool Studio */
:root {
  --rust: #b5513c;
  --rust-dark: #8c3a28;
  --oatmeal: #f5f0e8;
  --oatmeal-dark: #e8dfd2;
  --forest: #3d5e44;
  --forest-light: #5a8464;
  --charcoal: #2e2e2e;
  --warm-white: #fdfbf7;
  --text: #3a3530;
  --text-light: #6b6259;
  --border: #ddd5c9;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.75;
  font-size: 17px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  background: var(--oatmeal);
  border-bottom: 2px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rust-dark);
  font-size: 1.2rem;
  font-weight: bold;
}

.brand svg { flex-shrink: 0; }

nav { display: flex; gap: 22px; flex-wrap: wrap; }

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.2s;
}
nav a:hover { color: var(--rust); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--oatmeal) 0%, var(--oatmeal-dark) 100%);
  padding: 80px 24px;
  text-align: center;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--rust-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero .btn {
  display: inline-block;
  background: var(--rust);
  color: #fff;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.hero .btn:hover { background: var(--rust-dark); }

/* Sections */
section { padding: 60px 0; }
section.alt { background: var(--oatmeal); }

section h2 {
  font-size: 1.9rem;
  color: var(--forest);
  margin-bottom: 14px;
}
section h3 {
  font-size: 1.3rem;
  color: var(--rust-dark);
  margin-bottom: 8px;
}
section p { margin-bottom: 14px; }

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 6px; }
.card-body p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 0; }

.card-body .price {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--forest);
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img { width: 100%; border-radius: 8px; }

/* Article */
article { max-width: 740px; margin: 0 auto; }
article h2 { margin-top: 36px; }
article h3 { margin-top: 24px; color: var(--forest); font-size: 1.2rem; }
article ul, article ol { margin: 14px 0 14px 24px; }
article li { margin-bottom: 8px; }
article img {
  width: 100%;
  border-radius: 8px;
  margin: 24px 0;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--oatmeal);
  padding: 48px 0 32px;
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
footer h4 { margin-bottom: 12px; font-size: 1rem; color: #fff; }
footer a {
  color: var(--oatmeal-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
footer a:hover { color: #fff; }
footer .copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 48px 20px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  header .container { justify-content: center; text-align: center; }
  nav { justify-content: center; }
  footer .container { grid-template-columns: 1fr; }
}

.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
