:root {
  --orange: #FF8F1C;
  --blue: #8DB9CA;
  --yellow: #FFD451;
  --cream: #F5EFE4;
  --ink: #1A1714;
  --paper: #FAFAF7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1.5rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: var(--yellow);
  color: var(--ink);
}
.logo {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-style: italic;
}
.logo-accent { color: var(--orange); }
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.nav-links a { opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }

.blog-header {
  padding: 10rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.blog-header .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--orange);
  margin-bottom: 1rem;
}
.blog-header h1 {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.blog-header h1 em { font-style: italic; font-weight: 300; color: var(--orange); }
.blog-header .tagline {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.3rem;
  max-width: 600px;
  opacity: 0.85;
}

.post-sections {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.recipe-filters {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}
.recipe-filter {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.recipe-filter:hover {
  background: var(--ink);
  color: var(--paper);
}
.recipe-filter.is-active {
  background: var(--ink);
  color: var(--paper);
}
.posts-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
  align-items: start;
}
.posts-hero .posts.is-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow: visible;
  scroll-snap-type: none;
  padding: 0;
}
.posts-hero .post-card {
  flex: initial;
  width: 100%;
  scroll-snap-align: none;
}
.posts-hero-col.is-new .post-card-image {
  aspect-ratio: 1 / 1;
}
.posts-hero-col.is-new .post-card h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.15;
}
.posts-hero-col.is-featured .post-card {
  max-width: 280px;
}
.posts-hero-col.is-featured .post-card-excerpt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 800px) {
  .posts-hero { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
}
.posts-section {
  margin-bottom: 4rem;
}
.posts-section:last-child {
  margin-bottom: 0;
}
.posts-section.is-featured {
  background: var(--cream);
  border-radius: 8px;
  padding: 3.5rem 3rem 4rem;
  margin: 0 -3rem 5rem;
}
.posts-section.is-featured .post-card {
  flex-basis: 340px;
}
@media (max-width: 700px) {
  .posts-section.is-featured {
    padding: 2.5rem 1.5rem 3rem;
    margin: 0 -1.5rem 4rem;
  }
  .posts-section.is-featured .post-card {
    flex-basis: 280px;
  }
}
.posts-section-title {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--orange);
}
.posts-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.posts-section-head .posts-section-title {
  margin-bottom: 0;
}
.posts-section-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink);
  opacity: 0.7;
  white-space: nowrap;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.posts-section-link:hover {
  opacity: 1;
  color: var(--orange);
}
.posts-section-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.posts-section-filters .recipe-filter {
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
}
.post-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.6rem 0 0.75rem;
}
.post-card-badge {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(26, 23, 20, 0.18);
}
.posts-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.posts-page-btn {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  min-width: 2.4rem;
  border-radius: 4px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.posts-page-btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.posts-page-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}
.posts-group {
  margin-bottom: 4rem;
}
.posts-group-title {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  color: var(--orange);
}
.posts-group .posts-section.is-sub {
  margin-bottom: 2.5rem;
}
.posts-group .posts-section.is-sub:last-child {
  margin-bottom: 0;
}
.posts-subsection-title {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
  opacity: 0.85;
}
.posts-row {
  position: relative;
}
.posts-section.is-grid .posts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem 1.5rem;
  overflow: visible;
  scroll-snap-type: none;
}
.posts-section.is-grid .post-card {
  flex: initial;
  width: auto;
  scroll-snap-align: none;
}
@media (max-width: 900px) {
  .posts-section.is-grid .posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .posts-section.is-grid .posts {
    grid-template-columns: 1fr;
  }
}
.posts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.posts::-webkit-scrollbar { display: none; }
.posts-arrow {
  position: absolute;
  top: calc(50% - 0.5rem);
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 14px -4px rgba(26, 23, 20, 0.3);
}
.posts-arrow:hover:not(:disabled) {
  background: var(--orange);
  transform: translateY(-50%) scale(1.08);
}
.posts-arrow.left { left: -1.1rem; }
.posts-arrow.right { right: -1.1rem; }
.posts-arrow svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.posts-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.posts-arrow.hidden { display: none; }
.post-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}
.post-card:hover { transform: translateY(-4px); }
.post-card a { display: flex; flex-direction: column; gap: 1rem; align-items: stretch; }
@media (max-width: 700px) {
  .post-sections { padding: 0 1.25rem 4rem; }
  .posts-section { margin-bottom: 3rem; }
  .post-card { flex-basis: 240px; }
}
.post-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}
.post-card h2 {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.post-card:hover h2 { color: var(--orange); }
.post-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.75;
}
.posts-empty {
  flex: 1 0 100%;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 5rem 0;
  text-align: center;
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  opacity: 0.5;
  list-style: none;
}
@media (max-width: 700px) {
  nav { padding: 0.75rem 1rem; }
  .logo { font-size: 1rem; }
  .nav-links { gap: 0.75rem; font-size: 0.6rem; letter-spacing: 0.1em; }
  .blog-header { padding: 7rem 1.25rem 3rem; }
}

.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  align-items: start;
}
article.post {
  max-width: 720px;
  margin: 0;
  padding: 0;
}
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sb-block {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: 4px;
}
.sb-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.sb-about-photo {
  display: block;
  width: calc(100% + 3rem);
  height: 220px;
  object-fit: cover;
  object-position: center 20%;
  margin: -1.5rem -1.5rem 1.25rem;
}
.sb-about h4 {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.sb-about h4 em { font-style: normal; }
.sb-about p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.5;
}

.sb-newsletter h4 {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.sb-newsletter p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.sb-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sb-newsletter input {
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 0;
}
.sb-newsletter input:focus { outline: 2px solid var(--orange); outline-offset: -2px; }
.sb-newsletter button {
  padding: 0.75rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background 0.2s;
}
.sb-newsletter button:hover { background: var(--orange); }
.sb-newsletter-msg {
  font-size: 0.8rem;
  font-style: italic;
  opacity: 0.75;
  min-height: 1em;
  margin-top: 0.25rem;
}
.sb-social {
  background: transparent;
  padding: 0;
}
.social-row {
  display: flex;
  gap: 0.6rem;
}
.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover {
  background: var(--orange);
  transform: scale(1.08);
}
.social-row svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
  display: block;
}

.sb-latest ul {
  list-style: none;
  margin: 0; padding: 0;
}
.sb-latest li { border-top: 1px solid rgba(26, 23, 20, 0.12); }
.sb-latest li:first-child { border-top: none; }
.sb-latest li a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.9rem;
  padding: 0.85rem 0;
  align-items: center;
  transition: padding-left 0.2s;
}
.sb-latest li a:hover { padding-left: 0.4rem; }
.sb-latest-feature {
  display: block;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.12);
  transition: opacity 0.2s;
}
.sb-latest-feature:hover { opacity: 0.85; }
.sb-latest-feature-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  margin-bottom: 0.7rem;
}
.sb-latest-feature-text { min-width: 0; }
.sb-latest-feature-title {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sb-latest-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}
.sb-latest-text { min-width: 0; }
.sb-latest-date {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 0.3rem;
}
.sb-latest-title {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sb-product h4 {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.sb-product p {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}
.sb-product a.btn {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  border-bottom: none;
  border-radius: 6px;
}
.sb-product a.btn:hover { background: var(--orange); }

@media (max-width: 1000px) {
  .post-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    padding: 8rem 2rem 3rem;
  }
  .sidebar {
    position: static;
    top: auto;
    margin-top: 3rem;
  }
}
.post-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.post h1 {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.post .excerpt {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  opacity: 0.75;
  margin-bottom: 3rem;
}
.post-hero {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0;
  box-shadow: 0 30px 60px -20px rgba(26, 23, 20, 0.25);
}
.post-header {
  background: var(--paper);
  padding: 2.25rem 2.5rem 1.75rem;
  margin: -4rem 1.5rem 3rem;
  position: relative;
  border-radius: 4px;
}
.post-header .post-meta { margin-bottom: 1rem; }
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.post-tag {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 999px;
}
.post-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.post-card-tag {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 999px;
}
.post-header h1 { margin-bottom: 1.25rem; }
.post-header .excerpt { margin-bottom: 0; }
.skip-to-recipe {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--orange);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, transform 0.2s ease;
}
.skip-to-recipe:hover {
  background: var(--orange);
  color: var(--paper);
  transform: scale(1.03);
}
@media (max-width: 700px) {
  .post-header {
    padding: 1.5rem 1.25rem 0.75rem;
    margin: -2.5rem 0.5rem 2rem;
  }
}
.post-body { font-size: 1.1rem; }
.post-body p { margin-bottom: 1.5rem; }
.post-body h2 {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 2rem;
  margin: 3rem 0 1rem;
  letter-spacing: -0.02em;
}
.post-body h3 {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.4rem;
  margin: 2.25rem 0 0.75rem;
}
.post-body ul, .post-body ol { margin: 0 0 1.5rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  opacity: 0.85;
}
.post-body img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  margin: 2rem 0;
}
.post-body img.post-body-img-full {
  aspect-ratio: auto;
  object-fit: contain;
}
.post-body a { color: var(--orange); border-bottom: 1px solid rgba(255,143,28,0.3); transition: border-color 0.2s; }
.post-body a:hover { border-color: var(--orange); }
.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}
.post-body th, .post-body td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(26, 23, 20, 0.15);
  text-align: left;
}
.post-body th {
  font-weight: 600;
  background: var(--cream);
}
.post-body code {
  background: var(--cream);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  font-size: 0.95em;
  font-family: ui-monospace, monospace;
}

.recipe-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}
.recipe-card > *:first-child { margin-top: 0; }
.recipe-card > *:last-child { margin-bottom: 0; }
.recipe-card blockquote { border-left-color: var(--ink); }
.recipe-card h3 { color: var(--orange); }
.recipe-card-title {
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}
.recipe-card-meta {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.recipe-meta-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--orange);
  margin: 0 0 0.35rem;
}
.recipe-card .recipe-meta-value {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange);
  margin: 0;
}
.post-body img.recipe-card-hero {
  display: block;
  width: 100%;
  margin: 0 auto 2rem;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 700px) {
  .recipe-card { padding: 1.5rem; }
  .post-body img.recipe-card-hero { margin-bottom: 1.5rem; }
}

.post-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink);
}
.product-cta {
  background: var(--cream);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}
.product-cta-img {
  display: block;
  width: calc(100% + 4rem);
  height: 260px;
  object-fit: cover;
  margin: -2rem -2rem 1.5rem;
}
.product-cta .label { display: none; }
.product-cta h3 {
  font-family: "bettoni-variable", 'Fraunces', serif;
  font-variation-settings: "opsz" 40, "wght" 110;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.product-cta p { margin-bottom: 1rem; font-size: 0.95rem; opacity: 0.8; }
.product-cta a.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  border-bottom: none;
  border-radius: 6px;
}
.product-cta a.btn:hover { background: var(--orange); }

.subscribe-cta {
  text-align: center;
  padding: 3rem 0 1rem;
}
.subscribe-cta p {
  font-family: "dejanire-headline", 'Fraunces', serif;
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  opacity: 0.75;
}
.subscribe-cta a {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--orange);
  color: var(--paper);
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.8rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: background 0.2s;
  border-bottom: none;
}
.subscribe-cta a:hover { background: var(--ink); }

footer.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 3rem 2rem 2rem;
  font-size: 0.85rem;
  margin-top: 4rem;
}
.site-footer .footer-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.site-footer a { opacity: 0.6; transition: opacity 0.2s; }
.site-footer a:hover { opacity: 1; }

@media (max-width: 700px) {
  .post-layout { padding: 6rem 1.25rem 3rem; }
  .post-body { font-size: 1.05rem; }
}
