:root {
  --primary: #513825;
  --secondary: #8b6a4f;
  --accent: #c6a16e;
  --bg: #f8f7f5;
  --text: #2b2b2b;
  --muted: #706a65;
  --border: #e6e0da;
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(52, 35, 25, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: 0.25s ease;
}
a:hover {
  color: var(--secondary);
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow-content {
  max-width: 850px;
}
.section {
  padding: 100px 0;
}
.site-main {
  min-height: 45vh;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.08;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.6em;
}
h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}
h2 {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
}
h3 {
  font-size: 1.65rem;
}
p {
  margin: 0 0 1.25rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-heading {
  margin-bottom: 48px;
  text-align: center;
}
.heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
  gap: 30px;
}
.btn,
.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 13px 28px;
  border: 1px solid var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}
.btn-primary,
.button,
input[type="submit"] {
  background: var(--primary) !important;
  color: #fff !important;
}
.btn-primary:hover,
.button:hover,
input[type="submit"]:hover {
  background: #352217 !important;
  border-color: #352217 !important;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.btn-ghost:hover {
  background: #fff;
  color: var(--primary);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}
.text-link .icon {
  width: 18px;
}
.icon {
  width: 23px;
  height: 23px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 9999;
  background: #fff;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 20px;
}
.page-hero {
  padding: 82px 0;
  background: var(--bg);
}
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.woocommerce-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
}
.empty-state {
  text-align: center;
  padding: 120px 20px;
}
.error-code {
  font: 600 8rem/1 var(--heading);
  color: var(--accent);
}
.entry-meta {
  color: var(--muted);
  font-size: 0.82rem;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.post-card-image {
  display: block;
  aspect-ratio: 4/3;
  background: var(--bg);
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.post-card:hover img {
  transform: scale(1.04);
}
.post-card-content {
  padding: 26px;
}
.post-card h2 {
  font-size: 1.75rem;
  margin: 0.35em 0;
}
.article-header {
  padding: 90px 0 55px;
  text-align: center;
  background: var(--bg);
}
.article-header h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}
.article-image {
  margin-top: 60px;
}
.article-image img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: var(--radius);
}
.article-body {
  padding-top: 60px;
  padding-bottom: 100px;
}
.article-body > p:first-of-type {
  font-size: 1.15rem;
}
.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 55px;
}
.widget {
  border-bottom: 1px solid var(--border);
  padding: 0 0 24px;
  margin-bottom: 28px;
}
.widget-title {
  font-size: 1.35rem;
}
.pagination,
.woocommerce-pagination {
  margin-top: 45px;
}
.page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.page-numbers a,
.page-numbers span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.page-numbers .current {
  background: var(--primary);
  color: #fff;
}
