/* Saint Crispin Leatherworks */
:root {
  --saddle: #6b3a20;
  --saddle-dark: #4a2810;
  --tan: #c9a96e;
  --tan-light: #f4ece0;
  --cream: #faf7f2;
  --dark: #1c1410;
  --text: #2d2218;
  --text-muted: #6e5d4e;
  --gold: #b8943f;
  --border: #e0d5c5;
}

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

body {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

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

/* Header */
header {
  background: var(--dark);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--saddle);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--tan);
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.brand svg { flex-shrink: 0; }

nav { display: flex; gap: 22px; flex-wrap: wrap; }
nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
nav a:hover { color: var(--tan); }

/* Hero */
.hero {
  background: var(--dark);
  color: var(--tan-light);
  padding: 90px 24px;
  text-align: center;
  border-bottom: 3px solid var(--saddle);
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--tan);
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero .btn {
  display: inline-block;
  background: var(--saddle);
  color: var(--tan-light);
  padding: 14px 34px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s;
  border: 1px solid var(--tan);
}
.hero .btn:hover { background: var(--saddle-dark); }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--tan-light); }

section h2 {
  font-size: 1.9rem;
  color: var(--saddle-dark);
  margin-bottom: 14px;
}
section h3 {
  font-size: 1.25rem;
  color: var(--saddle);
  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: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 6px; }
.card-body p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 0; }
.card-body .price {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--gold);
}

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

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

/* Footer */
footer {
  background: var(--dark);
  color: var(--tan-light);
  padding: 48px 0 32px;
  border-top: 3px solid var(--saddle);
}
footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}
footer h4 { margin-bottom: 12px; font-size: 1rem; color: var(--tan); }
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
footer a:hover { color: var(--tan); }
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.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 52px 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; }
}
