:root {
  --cream: #f5efe3;
  --cream-dark: #e8dcc8;
  --brown: #3d2b1f;
  --brown-mid: #5c4033;
  --tan: #c4a574;
  --tan-light: #d4bc94;
  --red: #b33a2b;
  --red-dark: #8c2e22;
  --black: #1a1410;
  --text: #2a2118;
  --muted: #6b5748;
  --white: #fffdf8;
  --shadow: 0 8px 24px rgba(26, 20, 16, 0.12);
  --radius: 12px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
.container { width: min(1120px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  background: var(--black);
  color: var(--cream);
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream) !important;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.logo span { color: var(--tan); display: block; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.nav { display: flex; gap: 0.35rem 1.25rem; flex-wrap: wrap; align-items: center; }
.nav a {
  color: var(--cream-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: var(--red);
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 0.45rem 0.9rem !important;
  border-radius: 6px;
  border-bottom: none !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--tan);
  color: var(--cream);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-weight: 700;
  cursor: pointer;
}

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(26,20,16,0.88), rgba(61,43,31,0.75)),
    radial-gradient(ellipse at 20% 50%, rgba(179,58,43,0.25), transparent 50%),
    var(--brown);
  color: var(--cream);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 18px,
    rgba(196,165,116,0.04) 18px,
    rgba(196,165,116,0.04) 19px
  );
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(196,165,116,0.2);
  border: 1px solid var(--tan);
  color: var(--tan-light);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 16ch;
}
.hero p {
  font-size: 1.15rem;
  max-width: 38rem;
  color: var(--cream-dark);
  margin: 0 0 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff !important; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-secondary {
  background: transparent;
  color: var(--cream) !important;
  border-color: var(--tan);
}
.btn-secondary:hover { background: rgba(196,165,116,0.15); }
.btn-outline {
  background: transparent;
  color: var(--brown) !important;
  border-color: var(--brown-mid);
}
.btn-outline:hover { background: var(--cream-dark); }
.btn-block { width: 100%; }

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt { background: var(--white); }
.section-head { text-align: center; margin-bottom: 2.25rem; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.5rem;
  color: var(--brown);
}
.section-head p { margin: 0 auto; max-width: 36rem; color: var(--muted); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 2px solid rgba(92,64,51,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover { border-color: var(--red); transform: translateY(-3px); }
.product-card.sold-out { opacity: 0.85; }
.product-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--brown-mid), var(--black));
  position: relative;
}
.product-visual .emoji { font-size: 3.5rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.product-visual .tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-visual .tag.gone { background: var(--muted); }
.product-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
  color: var(--brown);
}
.product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.65rem;
}
.product-body p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

/* Features */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature {
  text-align: center;
  padding: 1.5rem 1.25rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(92,64,51,0.1);
}
.feature .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.feature h3 { font-family: var(--font-display); margin: 0 0 0.4rem; color: var(--brown); font-size: 1.15rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* About / prose */
.prose { max-width: 42rem; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); color: var(--brown); }
.prose p { color: var(--text); font-size: 1.05rem; }
.quote {
  border-left: 4px solid var(--red);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--brown-mid);
}
.mascot-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--white);
  border: 2px solid rgba(92,64,51,0.12);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 2rem auto 0;
}
.mascot-face {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--tan), var(--brown-mid));
  border: 4px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 2px solid rgba(92,64,51,0.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.contact-card h3 { font-family: var(--font-display); margin-top: 0; color: var(--brown); }
.contact-card ul { list-style: none; padding: 0; margin: 0; }
.contact-card li { padding: 0.5rem 0; border-bottom: 1px solid rgba(92,64,51,0.1); color: var(--muted); }
.contact-card li:last-child { border-bottom: none; }
.order-note {
  background: rgba(179,58,43,0.08);
  border: 1px solid rgba(179,58,43,0.25);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--brown);
}
label { display: block; font-weight: 600; margin-bottom: 0.35rem; color: var(--brown); }
input, textarea, select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 2px solid rgba(92,64,51,0.2);
  border-radius: 8px;
  background: var(--cream);
  font: inherit;
  color: var(--text);
  margin-bottom: 1rem;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }

/* Blog stubs */
.blog-grid { display: grid; gap: 1.25rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 2px solid rgba(92,64,51,0.1);
  box-shadow: var(--shadow);
}
.blog-card h3 { margin: 0 0 0.5rem; font-family: var(--font-display); color: var(--brown); }
.blog-card p { margin: 0; color: var(--muted); }
.blog-meta { font-size: 0.8rem; color: var(--tan); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(92,64,51,0.1);
}
.testimonial p { margin: 0 0 0.75rem; font-style: italic; color: var(--text); }
.testimonial cite { font-style: normal; font-weight: 700; color: var(--brown); font-size: 0.9rem; }

/* CTA band */
.cta-band {
  background: var(--black);
  color: var(--cream);
  padding: 3rem 0;
  text-align: center;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
}
.cta-band h2 { font-family: var(--font-display); margin: 0 0 0.75rem; font-size: 1.85rem; }
.cta-band p { margin: 0 auto 1.5rem; max-width: 32rem; color: var(--cream-dark); }

/* Footer */
.site-footer {
  background: var(--brown);
  color: var(--cream-dark);
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h4 {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 0.75rem;
}
.site-footer a { color: var(--tan-light); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(196,165,116,0.25);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--tan);
}

/* Page hero small */
.page-hero {
  background: var(--brown);
  color: var(--cream);
  padding: 2.5rem 0;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 {
  font-family: var(--font-display);
  margin: 0 0 0.4rem;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
}
.page-hero p { margin: 0; color: var(--cream-dark); max-width: 36rem; }

@media (max-width: 800px) {
  .menu-toggle { display: block; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.75rem;
  }
  .nav.open { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .feature-row, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .mascot-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
