/* ROOT VARIABLES ---------------------------------------- */
:root {
  --bg-cream: #f7f1e6;
--bg-paper: #e8d7b9;
  --ink-black: #1f130b;
  --accent-gold: #c89b3c;

  --text-main: #2b1a10;

  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1100px;
}

/* GALLERY CARD ----------------------------------------- */
.gallery-card {
  background: #f7f3e9;
  padding: 30px;
  border: 2px solid #000;
  box-shadow: 0 0 0 6px #f7f3e9, 0 0 0 8px #000;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-title {
  font-family: "IM Fell English", serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.slideshow-container {
  position: relative;
}

.gallery-img {
  width: 100%;
  border: 1px solid #000;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: #000;
  font-size: 24px;
  user-select: none;
}

.prev { left: 0; }
.next { right: 0; }

/* GLOBAL ------------------------------------------------ */
body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--text-main);
  font-family: var(--font-sans);
}

.shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER ------------------------------------------------ */
.site-header {
  background: var(--bg-cream);
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 1.25rem 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text h1 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0;
}

.brand-text span {
  font-size: 0.85rem;
  opacity: 0.8;
}

.header-nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  color: var(--ink-black);
  font-weight: 500;
}

/* HERO -------------------------------------------------- */
.hero-wrap {
  background: var(--bg-cream);
  padding: 3rem 0;
}

.hero {
  background: var(--bg-cream);
  padding: 3rem 1.5rem;
  text-align: center;
}
----------------------------------- */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin: 0.5rem 0 0;
}

/* SHOP GRID --------------------------------------------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

/* Product Card */
.product-card {
  background: #fffdf7;
  border: 1px solid #d8d2c4;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-inner {
.hero-emblem {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin: 0 auto 1.25rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.hero-divider {
  width: 140px;
  margin: 1rem auto;
  border-top: 1px solid var(--ink-black);
}

.hero-subtitle {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* SECTIONS -----------
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-title,
.product-name {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.product-image-wrap {
  border: 1px solid #d0c7b4;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: #fdfaf2;
}

.product-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.product-tagline,
.product-note {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.product-body {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin: 1rem 0 1.25rem;
  color: #4a3f2f;
}

.product-price {
  font-weight: bold;
}
.product-meta {
  text-align: center;
  margin-bottom: 0.75rem;
}

.product-meta span {
  display: block;
  margin-bottom: 2px;
}

/* Button */
.btn-buy {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border: 1px solid #2b2520;
  background: #fffdf7;
  color: #2b2520;
  font-family: "Georgia", serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.18s ease-out;
  margin-top: auto;
}

.btn-buy:hover {
  background: #2b2520;
  color: #fffdf7;
}

/* Smaller jar images */
.small-jar {
  width: 70%;
  max-width: 180px;
  margin: 0 auto 1rem;
  display: block;
}

/* DEFINITIONS ------------------------------------------- */
.defs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.def-block {
  background: #f7f1e6;
  border: 1px solid #d8d2c4;
  padding: 1.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.def-title {
  font-family: "Georgia", serif;
  font-size: 1.15rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.def-body {
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Accordion Styling */
.accordion-block details {
  border: 1px solid #d8d2c4;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  background: #fffdf7;
  cursor: pointer;
}

.accordion-block summary {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  font-weight: bold;
  list-style: none;
}

.accordion-block summary::-webkit-details-marker {
  display: none;
}

.accordion-block summary:hover {
  color: #4a3f2f;
}

/* RESPONSIVE BREAKPOINTS ------------------------------- */
/* ============================
   RESPONSIVE BREAKPOINTS
   (SHOP + DEFINITIONS)
============================ */

/* 1100px — Large Tablets / Small Laptops */
@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

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

/* 768px — Tablets */
@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .product-inner {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .product-title,
  .product-name {
    font-size: 1.05rem;
  }

  .defs-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .def-block {
    padding: 1.5rem;
  }

  .def-title {
    font-size: 1.1rem;
  }
}

/* 480px — Phones */
@media (max-width: 480px) {
  .product-inner {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .product-title,
  .product-name {
    font-size: 1rem;
  }

  .product-body,
  .product-tagline,
  .product-note {
    font-size: 0.9rem;
  }

  .def-block {
    padding: 1.25rem;
  }

  .def-title {
    font-size: 1rem;
  }

  .def-body {
    font-size: 0.9rem;
  }
}

/* ============================
   STORY SECTION
============================ */
.story-card {
  background: #f7f1e6;
  border: 1px solid #d8d2c4;
  padding: 1.75rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.story-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: "IM Fell English", serif;
}

.engraved-lead {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* ============================
   FOOTER
============================ */
.site-footer {
  background: var(--bg-cream);
  padding: 3rem 0;
  text-align: center;

  /* Victorian frame */
  border-top: 2px solid var(--ink-black);
  border-bottom: 2px solid var(--ink-black);
  position: relative;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--ink-black);
}

.site-footer::before { top: 0.75rem; }
.site-footer::after { bottom: 0.75rem; }

.footer-seal {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  border: 1px solid var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  margin: 0 auto 1rem;
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.footer-sub {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-note {
  font-size: 0.85rem;
  margin-top: 1rem;
  opacity: 0.8;
}

/* ============================
   VICTORIAN FRAMES
============================ */

/* HERO FRAME */
.hero {
  border: 2px solid var(--ink-black);
  position: relative;
  padding: 3rem 1.5rem;
  background: var(--bg-paper);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: var(--ink-black);
}

.hero::before { top: 0.75rem; }
.hero::after { bottom: 0.75rem; }

/* SECTION FRAME */
.section {
  position: relative;
  background: var(--bg-cream);
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: rgba(0,0,0,0.25);
}

.section::before { top: 0; }
.section::after { bottom: 0; }

/* PRODUCT CARD FRAME */
.product-card {
  border: 2px solid var(--ink-black);
  background: #f7f1e6;
  position: relative;
}

.product-card::before,
.product-card::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 1px;
  background: var(--ink-black);
}

.product-card::before { top: 0.5rem; }
.product-card::after { bottom: 0.5rem; }

/* ABOUT CARD FRAME */
.about-block {
  border: 2px solid var(--ink-black);
  position: relative;
}

.about-block::before,
.about-block::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  height: 1px;
  background: var(--ink-black);
}
.def-block.full-width {
  width: 100%;
  max-width: none;
  grid-column: 1 / -1;
  display: block;
}


}
.about-card::before { top: 0.5rem; }
.about-card::after { bottom: 0.5rem; }