@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500&family=Playfair+Display:wght@600;700&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f5f3ee;
  --surface-3: #ebe7e0;
  --text: #111111;
  --muted: #65615a;
  --line: #ddd7ce;
  --accent: #b4492d;
  --accent-2: #000000;
  --accent-soft: #f6f2ea;
  --band: #7b82a4;
  --band-button: #2f57cf;
  --band-sand: #d1edee;
  --band-wine: #ffffff;
  --band-terracotta: #efbfd6;
  --topbar: #efbfd6;
  --shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
  --radius: 4px;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--topbar);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--topbar);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-frame {
  min-height: 100vh;
  background: var(--bg);
}

.page-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.site-topbar {
  background: var(--topbar);
}

.site-topbar-inner {
  display: flex;
  align-items: center;
  min-height: 2.4rem;
}

.site-topbar-nav {
  display: flex;
  align-items: center;
}

.site-topbar-nav {
  gap: 1.3rem;
}

.site-topbar-link {
  color: #ffffff;
}

.site-topbar-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0 1.15rem;
}

.brand-row {
  display: grid;
  gap: 0.45rem;
}

.brand-mark img {
  width: min(250px, 48vw);
  height: auto;
}

.home-page .site-header-inner {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.home-page .brand-row {
  justify-items: start;
  text-align: left;
}

.home-page .brand-mark img {
  width: min(268px, 49.5vw);
}

.home-page .site-nav {
  justify-content: flex-end;
}

.site-header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-kicker,
.section-kicker,
.aside-kicker,
.intro-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.6rem;
}

.site-nav-link {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
}

.site-nav-link:hover,
.site-nav-link.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.site-search {
  position: relative;
  width: min(9.5rem, 100%);
}

.site-search-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
}

.site-search-icon {
  color: var(--muted);
  font-size: 1.65rem;
  line-height: 1;
}

.site-search-input {
  width: 100%;
  min-height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-input:focus {
  outline: none;
}

.site-search-input::placeholder {
  color: transparent;
}

.site-search:focus-within .site-search-input::placeholder {
  color: var(--muted);
}

.site-search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  width: min(24rem, 78vw);
  max-height: 24rem;
  overflow: auto;
  padding: 0.35rem 0;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  z-index: 25;
}

.site-search-hit a,
.site-search-empty {
  display: block;
  padding: 0.7rem 0.85rem;
}

.site-search-hit a:hover {
  background: #f7f4ef;
}

.site-search-hit strong {
  display: block;
  font-size: 0.95rem;
}

.site-search-hit p,
.site-search-empty {
  margin: 0.28rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

main.page-shell {
  padding: 2rem 0 4rem;
}

.home-slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 2.35rem;
}

.home-slider-viewport {
  position: relative;
  min-height: clamp(26rem, 44vw, 39rem);
  overflow: hidden;
  background: #ece7df;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.home-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.home-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 2.4rem 2.4rem 3.1rem;
  background:
     linear-gradient(90deg, rgba(250, 247, 242, 0.9) 0%, rgba(250, 247, 242, 0.78) 26%, rgba(250, 247, 242, 0.12) 56%, rgba(250, 247, 242, 0) 100%);
}

.home-slide-copy {
  width: min(90vw, 78rem);
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.home-slide-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-slide-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3.1vw, 3.35rem);
  font-weight: 700;
  line-height: 1.02;
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}

.home-slide-copy h2 a {
  display: block;
  width: 100%;
}

.home-slide-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid #111111;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 1.1rem;
  cursor: pointer;
}

.home-slider-arrow-prev {
  left: 1rem;
}

.home-slider-arrow-next {
  right: 1rem;
}

.home-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding-top: 0.85rem;
}

.home-slider-dot {
  width: 0.65rem;
  height: 0.65rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.22);
  cursor: pointer;
}

.home-slider-dot.is-active {
  background: #111111;
}

.feature-lead h2,
.section-heading h2,
.article-header h1,
.archive-hero h1,
.about-panel h2,
.post-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr);
  gap: 2rem;
  align-items: start;
  padding: 0 0 1.25rem;
}

.hero-grid.editorial-echo {
  padding-top: 2.6rem;
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.hero-grid-rail-only {
  grid-template-columns: minmax(0, 1fr);
}

.hero-grid-rail-only .hero-rail {
  max-width: 32rem;
  justify-self: end;
  width: 100%;
}

.intro-band.editorial-echo {
  margin-bottom: 0.5rem;
}

.hero-story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy {
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: 0.5rem 0;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 10ch;
}

.hero-text {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-primary {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.hero-media {
  margin: 0;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius);
  background: #efefef;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: calc(100% - 2.5rem);
  object-fit: cover;
}

.hero-media figcaption {
  display: flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  color: var(--muted);
  background: #fbfbfb;
  border-top: 1px solid var(--line);
  font-size: 1rem;
}

.hero-rail {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.section-heading-rail {
  align-items: start;
  flex-direction: column;
  gap: 0.35rem;
}

.section-heading-rail h2 {
  font-size: 1.6rem;
}

.intro-band {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1rem 0 2.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.headline-stack {
  display: grid;
  gap: 0.95rem;
}

.headline-item {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}

.headline-item-kicker {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.headline-item h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.headline-item p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-section {
  padding: 2.5rem 0 0;
}

.home-videos {
  padding: 3rem 0 0.8rem;
}

.section-heading-videos {
  margin-bottom: 1rem;
}

.home-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
}

.home-video-card {
  display: grid;
  gap: 0.8rem;
}

.home-video-frame {
  aspect-ratio: 16 / 9;
  background: #111111;
}

.home-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.home-video-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
}

.showcase-band {
  margin-top: 2.5rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 1.5rem 0 1.75rem;
  color: #ffffff;
}

.showcase-band-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 34rem;
  padding-left: 0;
  padding-right: 0;
}

.showcase-band-sand {
  background: var(--band-sand);
  color: var(--text);
}

.showcase-band-wine {
  background: var(--band-wine);
  color: var(--text);
}

.showcase-band-terracotta {
  background: var(--band-terracotta);
  color: #ffffff;
}

.recipe-band-header {
  display: flex;
  align-items: end;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.recipe-band-header h2 {
  margin: 0.15rem 0 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 2.55rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-kicker-light {
  color: rgba(255, 255, 255, 0.75);
}

.showcase-band-sand .section-kicker-light,
.showcase-band-wine .section-kicker-light {
  color: rgba(17, 17, 17, 0.6);
}

.button-band {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0 1rem;
  background: var(--band-button);
  border: 1px solid transparent;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-band-sand .button-band {
  background: #111111;
  color: #ffffff;
}

.showcase-band-wine .button-band {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.showcase-band-terracotta .button-band {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.showcase-grid,
.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
  height: 100%;
  grid-auto-rows: 1fr;
}

.showcase-band-footer {
  display: flex;
  justify-content: flex-start;
  padding-top: 1.15rem;
}

.visual-card-band {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.visual-card-image {
  display: block;
  overflow: hidden;
  background: #efefef;
}

.visual-card-band .visual-card-image {
  aspect-ratio: 0.92 / 1;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.visual-card-band img,
.visual-card-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card:hover img {
  transform: scale(1.025);
  transition: transform 180ms ease;
}

.visual-card-caption {
  padding: 0.7rem 0 0;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  text-wrap: balance;
}

.showcase-band-sand .visual-card-caption,
.showcase-band-wine .visual-card-caption {
  color: var(--text);
}

.showcase-band-terracotta .visual-card-caption {
  color: rgba(255, 255, 255, 0.96);
}

.visual-card-band .visual-card-caption {
  min-height: 3.75rem;
}

.visual-card-light .visual-card-image {
  aspect-ratio: 1.16 / 1;
  border-radius: 0;
}

.visual-card-body {
  padding-top: 0.65rem;
}

.visual-card-kicker {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card-light h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.2;
}

.category-showcase {
  border-top: 1px solid var(--line);
}

.latest-section {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
}

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

.stack-list {
  display: grid;
  gap: 1.1rem;
}

.post-card {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.post-card-image {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #efefef;
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.post-card:hover .post-card-image img,
.feature-lead:hover img {
  transform: scale(1.025);
}

.post-card-body {
  padding: 0.95rem 0 0;
}

.post-card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.79rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0.65rem 0 0.55rem;
  font-size: 1.45rem;
  line-height: 1.14;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.post-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.9rem;
}

.post-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.post-card-featurette {
  padding-top: 0;
  border-top: 0;
}

.post-card-featurette .post-card-body {
  padding-top: 0.75rem;
}

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

.post-card-compact {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.post-card-compact .post-card-body {
  padding-top: 0;
}

.post-card-compact .post-card-image {
  aspect-ratio: auto;
  min-height: 100%;
}

.about-panel,
.archive-hero,
.article-layout {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.category-module {
  padding-top: 2.5rem;
}

.category-module-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: 1.5rem;
}

.category-module-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1rem;
  align-items: start;
}

.category-module-image {
  display: block;
  aspect-ratio: 1.02 / 1;
  overflow: hidden;
  border-radius: 6px;
  background: #efefef;
}

.category-module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-module-copy {
  display: grid;
  gap: 0.75rem;
}

.category-module-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.05;
}

.category-module-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.about-panel {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.about-panel h2 {
  font-size: 2.25rem;
}

.archive-hero h1,
.article-header h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.archive-hero .hero-text {
  max-width: 40rem;
}

.article-layout-post {
  padding-top: 0.5rem;
}

.recipe-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  max-width: 36rem;
  margin: 1.5rem auto 0;
  background: #fbfbf8;
}

.recipe-meta-item {
  display: grid;
  gap: 0.45rem;
  padding: 0.95rem 1.1rem;
  text-align: center;
}

.recipe-meta-item + .recipe-meta-item {
  border-left: 1px solid var(--line);
}

.recipe-meta-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-meta-value {
  margin: 0;
  min-height: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}

.article-flow {
  display: grid;
  gap: 1.8rem;
}

.recipe-detail {
  display: grid;
  gap: 1.6rem;
  width: 100%;
  margin: 0;
}

.recipe-detail-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}

.recipe-detail-section {
  display: grid;
  gap: 0.75rem;
}

.recipe-detail-label {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recipe-detail-copy {
  margin: 0;
}

.recipe-detail-copy p:last-child,
.recipe-detail-copy ul:last-child,
.recipe-detail-copy ol:last-child {
  margin-bottom: 0;
}

.article-header {
  display: grid;
  gap: 0.8rem;
}

.article-hero {
  margin-top: 1.4rem;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
}

.article-hero img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: 2rem;
  margin-top: 1.6rem;
}

.prose {
  color: #2b2521;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  line-height: 1.9;
  margin-left: auto;
  margin-right: auto;
}

.prose p {
  margin: 0 0 1.2rem;
}

.prose h2,
.prose h3,
.prose h4 {
  margin: 2rem 0 0.9rem;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prose ul,
.prose ol {
  padding-left: 1.4rem;
}

.prose blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(125, 45, 32, 0.25);
}

.prose img {
  margin: 1.5rem 0;
  border-radius: 6px;
}

.dropcap {
  float: left;
  margin: 0.05rem 0.55rem 0 0;
  color: var(--accent);
  font-size: 3.1rem;
  line-height: 0.86;
}

.article-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.aside-box,
.rating-box,
.status-note {
  padding: 1rem;
  background: #fbfbfb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rating-box {
  display: inline-flex;
  gap: 0.7rem;
  align-items: baseline;
  width: fit-content;
}

.rating-box strong {
  color: var(--topbar);
  font-size: 1.35rem;
}

.status-note {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid #111111;
  background: #111111;
  color: #ffffff;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 0.75fr) minmax(12rem, 0.6fr);
  gap: 3.2rem;
  padding: 2.6rem 0 2.1rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.footer-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column:first-child .footer-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.footer-copy {
  margin: 0;
  max-width: 31rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links-column {
  flex-direction: column;
  gap: 0.45rem;
  align-items: start;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  line-height: 1.45;
}

.site-footer-legal {
  margin: 0;
  padding: 1.15rem 0 1.2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.78);
}

@media (max-width: 1040px) {
  .hero-grid,
  .hero-story,
  .category-module-grid,
  .category-module-lead,
  .article-grid,
  .about-panel,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-header-inner {
    align-items: start;
  }

  .recipe-meta {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .recipe-meta-item + .recipe-meta-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-topbar-inner {
    flex-direction: column;
    align-items: start;
    padding: 0.35rem 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

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

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

  .post-card-compact {
    grid-template-columns: 1fr;
  }

  .post-card-compact .post-card-body {
    padding-top: 0.85rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 1.4rem), var(--content));
  }

  .home-slider-viewport {
    min-height: 31rem;
  }

  .home-slide-overlay {
    align-items: end;
    padding: 1.35rem;
    background:
      linear-gradient(180deg, rgba(250, 247, 242, 0.04) 0%, rgba(250, 247, 242, 0.2) 30%, rgba(250, 247, 242, 0.94) 100%);
  }

  .home-slide-copy {
    width: 100%;
    gap: 0.7rem;
  }

  .home-slide-copy h2 {
    max-width: 100%;
    font-size: 2.4rem;
  }

  .home-slider-arrow {
    display: none;
  }

  .site-header-inner,
  main.page-shell {
    padding-top: 0.9rem;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-media {
    min-height: 24rem;
  }

  .showcase-band {
    padding: 1.25rem 0 1.4rem;
  }

  .recipe-band-header {
    align-items: start;
    flex-direction: column;
  }

  .article-hero {
    min-height: 18rem;
  }

  .showcase-grid,
  .visual-grid,
  .card-grid,
  .home-video-grid {
    grid-template-columns: 1fr;
  }

  .visual-card-band .visual-card-image {
    aspect-ratio: 1.12 / 1;
  }

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