:root {
  --cream: #fdf6e3;
  --cream-2: #f4e4c1;
  --paper: #faf1d9;
  --honey: #e39b2b;
  --honey-deep: #a8680f;
  --text: #2a1f10;
  --text-soft: #5c4428;
  --rule: #d6c08a;
  --ink: #1a110a;
  --green: #48583a;
  --bluebonnet: #3c4f96;
}
* { 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(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--honey-deep); }
a:hover { color: var(--text); }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 1rem 1.5rem;
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  text-decoration: none;
}
.brand .the {
  font-size: 0.65rem;
  font-style: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--honey-deep);
  display: block;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav a { text-decoration: none; color: var(--text-soft); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.container.narrow { max-width: 720px; }

h1.page-title {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  text-align: center;
}
.page-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.page-subtitle::before, .page-subtitle::after {
  content: "—";
  margin: 0 0.75rem;
  color: var(--honey-deep);
}

h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}
p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.4rem; }

.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.site-footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.site-footer .links a { text-decoration: none; color: var(--text-soft); }
.site-footer .links a:hover { color: var(--text); }

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--honey);
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--honey-deep);
  border-radius: 999px;
  font-family: Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); color: var(--text); }
.btn.secondary { background: transparent; color: var(--text); }
.btn.full { width: 100%; text-align: center; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.product-image {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f6dd8a, #e39b2b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
  position: relative;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image .placeholder { font-size: 3.5rem; }
.sold-out {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(42, 31, 16, 0.85);
  color: var(--cream);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: Georgia, serif;
}
.product-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.product-name {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.product-size {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.product-price {
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: Georgia, serif;
}
.product-price .currency { font-size: 0.9rem; color: var(--text-soft); }

.notice {
  background: #fff4d2;
  border-left: 4px solid var(--honey);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.notice strong { color: var(--text); }

.back-link {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-decoration: none;
  margin-bottom: 2rem;
}
.back-link::before { content: "← "; }
.back-link:hover { color: var(--text); }

.legal-meta {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  text-align: center;
}
