:root {
  --bg-cream: #f8f3e7;
  --bg-linen: #efe3cf;
  --ink: #243228;
  --moss: #56684f;
  --berry: #975b51;
  --clay: #b67c59;
  --brass: #9f7d3f;
  --paper: #fffdf9;
  --line: #dbc6a0;
  --shadow-soft: 0 14px 30px rgba(36, 50, 40, 0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito Sans', 'Trebuchet MS', sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%, rgba(159, 125, 63, 0.15), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(151, 91, 81, 0.11), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg-cream) 55%, #f3eadc 100%);
}

a {
  color: var(--moss);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--berry);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: 'Fraunces', 'Times New Roman', serif;
  line-height: 1.15;
  color: #273625;
}

p {
  margin: 0 0 1rem;
}

.wrapper {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  left: 1rem;
  top: 1rem;
  background: #fff;
  z-index: 9999;
}

.top-strip {
  border-bottom: 1px solid rgba(159, 125, 63, 0.28);
  background: rgba(255, 249, 238, 0.9);
}

.top-strip-inner {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  font-size: 0.95rem;
}

.top-strip a {
  font-weight: 700;
  color: var(--berry);
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.brand-row {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(159, 125, 63, 0.26);
  background: rgba(248, 243, 231, 0.93);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-block .custom-logo {
  max-height: 62px;
  width: auto;
}

.site-title {
  display: block;
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.05;
  color: #223021;
  text-decoration: none;
}

.site-tagline {
  margin: 0.2rem 0 0;
  color: var(--moss);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffcf7;
  color: var(--ink);
  font-weight: 700;
  padding: 0.55rem 1rem;
  cursor: pointer;
}

.primary-nav .menu,
.menu.menu-fallback,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.primary-nav a,
.footer-menu a,
.menu-fallback a {
  text-decoration: none;
  font-weight: 700;
  color: #2c3b2c;
}

.cart-pill {
  justify-self: end;
  border: 1px solid rgba(182, 124, 89, 0.45);
  border-radius: 999px;
  color: #2a3628;
  text-decoration: none;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background: #fffaf0;
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.5rem;
  margin-left: 0.35rem;
  border-radius: 999px;
  background: var(--berry);
  color: #fff;
  font-size: 0.83rem;
}

.site-content {
  padding: 2.2rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.hero-copy,
.hero-card {
  background: var(--paper);
  border: 1px solid rgba(159, 125, 63, 0.26);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(86, 104, 79, 0.14);
  color: #2d3f2c;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.72rem 1.3rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(135deg, #5a6d53, #42533e);
  color: #fffef9;
}

.button-secondary {
  border-color: rgba(159, 125, 63, 0.55);
  background: #fff;
  color: #2c3b2c;
}

.hero-card h2 {
  margin-bottom: 0.75rem;
  color: var(--berry);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-card li {
  margin-bottom: 0.55rem;
}

.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.collections,
.process,
.content-shell {
  margin-top: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.collection-card {
  border: 1px solid rgba(159, 125, 63, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 251, 243, 0.94);
  padding: 1rem;
}

.collection-card h3 {
  margin-bottom: 0.45rem;
}

.collection-card a {
  display: inline-block;
  margin-top: 0.45rem;
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.process-grid article {
  border: 1px solid rgba(159, 125, 63, 0.24);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 1rem;
}

.local-note {
  margin-top: 2rem;
  background: linear-gradient(120deg, rgba(182, 124, 89, 0.15), rgba(86, 104, 79, 0.14));
  border-top: 1px solid rgba(182, 124, 89, 0.3);
  border-bottom: 1px solid rgba(182, 124, 89, 0.3);
}

.local-note-inner {
  padding: 1.65rem 0;
}

.placeholder-note {
  border: 1px dashed rgba(151, 91, 81, 0.45);
  border-radius: var(--radius-md);
  background: #fff9f2;
  padding: 1rem;
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  border: 1px solid rgba(159, 125, 63, 0.24);
  border-radius: var(--radius-md);
  background: #fffefb;
  padding: 1rem;
}

.post-meta {
  color: #6b7b66;
  font-size: 0.92rem;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(159, 125, 63, 0.34);
  background: #f2e8d7;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-title {
  margin: 0;
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: 1.1rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin: 0.2rem 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid rgba(159, 125, 63, 0.25);
  border-radius: var(--radius-md);
  background: #fffefb;
  padding: 0.8rem;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  border-radius: 999px;
  background: #4f624a;
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .brand-row {
    grid-template-columns: 1fr auto auto;
    row-gap: 0.6rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 0.3rem;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .menu,
  .menu.menu-fallback {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-pill {
    justify-self: start;
  }

  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
