:root {
  --ink: #1a1a1a;
  --forest: #1b3a2f;
  --forest-deep: #12261f;
  --moss: #4a6b5a;
  --ochre: #c4a35a;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --muted: #5c645e;
  --line: #d8d0c2;
  --danger: #8a2f2f;
  --radius: 14px;
  --shadow: 0 18px 40px rgba(18, 38, 31, 0.08);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--forest-deep);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.narrow {
  width: min(760px, calc(100% - 2rem));
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__mark {
  display: block;
  border-radius: 10px;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.78rem;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav .current-menu-item a {
  color: var(--forest);
}

.header-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  background: var(--forest);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.8rem 0.45rem 0.95rem;
  font-weight: 600;
}

.header-cart:hover {
  color: #fff;
  background: var(--forest-deep);
}

.header-cart__count {
  background: var(--ochre);
  color: var(--forest-deep);
  min-width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(196, 163, 90, 0.22), transparent 28%),
    linear-gradient(135deg, var(--forest-deep), var(--forest) 58%, #2d5a45);
  color: #f6f1e4;
  padding: 5.5rem 0 5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 14ch;
  margin: 0 0 1rem;
}

.hero-lead {
  max-width: 38rem;
  font-size: 1.2rem;
  color: rgba(247, 243, 235, 0.86);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ochre);
  margin: 0 0 0.8rem;
}

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

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce #respond input#submit,
.woocommerce input.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-family: var(--sans);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: var(--ochre);
  color: var(--forest-deep);
}

.button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  background: var(--ochre);
  color: var(--forest-deep);
}

.button--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}

.button--small {
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
}

.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: #efe8d8;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2,
.split h2,
.page-article h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.product-grid,
ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-card,
ul.products li.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-card__media,
ul.products li.product a img {
  display: block;
  background: #e7e0d2;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.product-card__body,
ul.products li.product .woocommerce-loop-product__title,
ul.products li.product .price {
  padding: 0 1.1rem;
}

.product-card__body {
  padding: 1.1rem 1.15rem 1.3rem;
  flex: 1;
}

.product-card__sku,
.product-contributors__label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: var(--moss);
  font-weight: 700;
  margin: 0;
}

.product-card h3,
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0.25rem 0 0.4rem;
}

.product-card h3 a,
ul.products li.product .woocommerce-loop-product__title {
  text-decoration: none;
  color: inherit;
}

.product-card__subtitle,
.product-subtitle {
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.product-card__price,
.woocommerce .price {
  font-weight: 700;
  color: var(--forest);
}

.woocommerce .price del {
  color: var(--muted);
  font-weight: 500;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.focus-grid li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.1rem 1rem;
  font-family: var(--serif);
  font-weight: 650;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.split-card {
  background: var(--forest);
  color: #f6f1e4;
  border-radius: var(--radius);
  padding: 1.8rem;
}

.page-article {
  padding: 3.5rem 0 4.5rem;
}

.entry-content p {
  max-width: 62ch;
}

.site-footer {
  background: var(--forest-deep);
  color: #e8e2d4;
  padding: 3rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-brand,
.footer-heading {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.6rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.site-footer a {
  color: #f3ead4;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 234, 212, 0.7);
  font-size: 0.92rem;
}

.shop-main {
  padding: 2.5rem 0 4rem;
}

.woocommerce-products-header__title,
.woocommerce-loop-product__title {
  font-family: var(--serif);
}

.product-contributors {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
}

.product-contributors li {
  margin: 0.2rem 0;
}

.editorial-table th {
  width: 38%;
}

.woocommerce span.onsale {
  background: var(--ochre);
  color: var(--forest-deep);
}

.woocommerce-demo-store {
  padding-top: 2.4rem;
}

.woocommerce-store-notice,
p.demo_store {
  background: var(--forest);
  color: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}

@media (max-width: 800px) {
  .header-inner,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .primary-nav {
    margin-left: 0;
    width: 100%;
    order: 3;
  }

  .header-inner {
    padding: 0.8rem 0 1rem;
  }

  .hero {
    padding: 3.5rem 0;
  }
}
