/* ════════════════════════════════════════════════════════════
   SECTIONS — Marquee, Meat, Products, Farm, Shops, Blog
   ════════════════════════════════════════════════════════════ */

/* ════ MARQUEE ════ */
.marquee-wrap {
  background: #5C0F0F;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 5;
}

.marquee-belt {
  display: flex;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.1rem 0;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.marquee-dot {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════ S-LOGO-REVEAL — Closing scroll canvas ════ */
.s-logo-reveal {
  position: relative;
  height: 300vh;
  background: #0c0b09;
}

.s-logo-reveal__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px clamp(2rem, 5vw, 5rem);
  box-sizing: border-box;
  overflow: hidden;
}

/* flex row — box left, text right */
.s-logo-reveal__inner {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 4vw, 5rem);
  width: 100%;
  max-width: 1300px;
}

.s-logo-reveal__box {
  flex: 0 0 auto;
  width: 44%;
  aspect-ratio: 1 / 1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  will-change: transform;
  box-shadow:
    0 2px 4px  rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.45),
    0 28px 64px rgba(0,0,0,0.55),
    0 64px 128px rgba(0,0,0,0.45);
}

#logoCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* text — fills remaining flex space */
.lr-text {
  flex: 1;
  max-width: 380px;
  opacity: 0;
  will-change: opacity, transform;
  pointer-events: none;
}

.lr-text__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.lr-text__heading {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

.lr-text__heading em {
  font-style: italic;
  color: var(--color-accent);
}

.lr-text__body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.lr-text__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1.6rem;
}

.lr-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.lr-stat__num {
  font-family: var(--font-disp);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.lr-stat__lbl {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.lr-text__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(201,168,78,0.35);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}

.lr-text__link:hover { border-color: var(--color-accent); }

/* ── Mobile: stacked ── */
@media (max-width: 900px) {
  .s-logo-reveal { height: 200vh; }

  .s-logo-reveal__sticky {
    padding: calc(var(--nav-h) + 1.2rem) 1.4rem 2.4rem;
    overflow: visible;
    align-items: center;
  }

  .s-logo-reveal__inner {
    flex-direction: column;
    gap: 1.8rem;
    align-items: center;
  }

  .s-logo-reveal__box {
    width: min(72vw, 360px);
    transform: none !important;
  }

  .lr-text {
    max-width: min(88vw, 480px);
    text-align: center;
  }

  .lr-text__stats { justify-content: center; }
}


/* ════ S-MEAT — Two-column: text left, video right ════ */
.s-meat {
  position: relative;
  height: 300vh;
  background: #080304;
}

.s-meat__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 6rem);
  padding: var(--nav-h) clamp(2rem, 5vw, 6rem) 3rem;
  box-sizing: border-box;
}

/* LEFT: text */
.s-meat__left {
  flex: 1;
  max-width: 460px;
}

.s-meat__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8B1A1A;
  margin-bottom: 1.4rem;
}

.s-meat__heading {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  color: #f2ede6;
  margin-bottom: 1.4rem;
}

.s-meat__heading em {
  font-style: italic;
  color: #c8a96e;
}

.s-meat__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.85;
  color: rgba(242,237,230,0.55);
  margin-bottom: 2rem;
  max-width: 400px;
}

.s-meat__stats {
  display: flex;
  gap: 32px;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(139,26,26,0.3);
  margin-bottom: 2.2rem;
}

.s-meat__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s-meat__stat-num {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 700;
  color: #c8a96e;
  line-height: 1;
}

.s-meat__stat-lbl {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,237,230,0.38);
}

.s-meat__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8B1A1A;
  border: 1px solid rgba(139,26,26,0.45);
  padding: 12px 28px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.s-meat__cta:hover {
  background: #8B1A1A;
  color: #f2ede6;
}

/* RIGHT: contained video player */
.s-meat__right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.s-meat__video-box {
  position: relative;
  width: min(460px, 42vw);
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0e0606;
  box-shadow:
    0 2px 6px rgba(0,0,0,0.55),
    0 10px 30px rgba(0,0,0,0.45),
    0 30px 70px rgba(0,0,0,0.5);
}

#meatCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Thin progress bar at the bottom of the video box */
.s-meat__video-chrome {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0;
  pointer-events: none;
}

.s-meat__progress-bar {
  height: 3px;
  background: rgba(255,255,255,0.12);
}

.s-meat__progress-fill {
  height: 100%;
  width: 0%;
  background: #8B1A1A;
}

@media (max-width: 900px) {
  .s-meat__sticky {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 2rem;
    padding-top: calc(var(--nav-h) + 1rem);
  }
  .s-meat__left   { max-width: 100%; }
  .s-meat__video-box { width: min(90vw, 480px); }
}

@media (max-width: 600px) {
  .s-meat { height: 250vh; }
  .s-meat__stats { gap: 20px; }
}

/* ════ S-PRODUCTS ════ */
.s-products {
  background: #100B09;
  padding: 140px 80px;
  --color-accent: #C8784A;
  position: relative;
}

.s-products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, #1C1210, transparent);
  pointer-events: none;
  z-index: 1;
}

.s-products__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.s-products__header { margin-bottom: 60px; }

.s-products__title {
  font-family: var(--font-disp);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.s-products__sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--color-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-top: 16px;
}

.s-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Product card */
.product-card { cursor: pointer; }

.product-card__inner {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-card__img {
  width: 100%; height: 100%;
  transition: transform 0.7s var(--ease-out);
  object-fit: cover;
}

.product-card:hover .product-card__img { transform: scale(1.04); }

.product-card__img-full {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #0c0b09;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.55s var(--ease-out);
}

.product-card:hover .product-card__img-full { opacity: 1; }

.product-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,11,9,0.95) 0%, transparent 55%);
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.55s var(--ease-out);
}

.product-card:hover .product-card__inner::after { opacity: 0.2; }

.product-card__num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-muted);
  z-index: 3;
}

.product-card__hover-pill {
  position: absolute;
  top: 20px; left: 20px;
  border: 1px solid var(--color-accent);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  padding: 6px 14px;
  color: var(--color-accent);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-card__hover-pill { opacity: 1; }

.product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 24px 32px;
  z-index: 3;
}

.product-card__accent-line {
  width: 40px; height: 1px;
  background: var(--color-accent);
  margin-bottom: 14px;
}

.product-card__name {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 6px;
}

.product-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #b0a898;
  margin: 0;
}

/* ── See-all CTA ── */
.s-products__cta-wrap {
  text-align: center;
  padding: 3rem 0 1rem;
}

.s-products__see-all {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(201, 168, 78, 0.35);
  padding: 0.85rem 2.4rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.s-products__see-all:hover {
  background: var(--color-accent);
  color: #0c0b09;
  border-color: var(--color-accent);
}

/* Carousel dots — hidden on desktop */
.carousel-dots { display: none; }

@media (max-width: 768px) {
  .s-products { padding: 80px 0; }
  .s-products__header { padding: 0 24px; }

  .s-products__grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding: 0 24px 8px;
    scrollbar-width: none;
  }
  .s-products__grid::-webkit-scrollbar { display: none; }

  .product-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 0 24px;
  }

  .carousel-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
    flex-shrink: 0;
  }

  .carousel-dot.active {
    background: var(--gold);
    transform: scale(1.35);
  }
}

/* ════ S-FARM (STORY) ════ */
.s-farm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #180D0D;
}

.s-farm__img-col {
  position: relative;
  overflow: hidden;
}

.s-farm__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  background: url('../images/new image footage/lopa.jpg') center 30% / cover no-repeat;
  filter: brightness(0.8) saturate(0.9);
  filter: brightness(0.55) saturate(0.7);
}

.s-farm__badge {
  position: absolute;
  bottom: 0; left: 0;
  background: #8B1A1A;
  color: #f2ede6;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.s-farm__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.s-farm__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 2rem;
}

.s-farm__eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: #8B1A1A;
  flex-shrink: 0;
}

.s-farm__eyebrow-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8B1A1A;
}

.s-farm__heading {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.s-farm__heading span { display: block; }

.s-farm__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  color: #b0a898;
  max-width: 440px;
  margin: 28px 0 0;
}

.s-farm__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}

.s-farm__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.s-farm__stat-num {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #8B1A1A;
  line-height: 1;
}

.s-farm__stat-line {
  display: block;
  width: 30px; height: 1px;
  background: #8B1A1A;
}

.s-farm__stat-lbl {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.s-farm__cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #8B1A1A;
  text-decoration: none;
  margin-top: 40px;
  display: inline-block;
  transition: letter-spacing 0.3s;
}

.s-farm__cta:hover { letter-spacing: 0.5px; }

@media (max-width: 768px) {
  .s-farm { grid-template-columns: 1fr; }
  .s-farm__img-col  { height: 40vh; min-height: 240px; }
  .s-farm__content  { padding: 60px 24px; }
  .s-farm__stats    { gap: 24px; flex-wrap: wrap; }
}

/* ════ S-SHOPS ════ */
.s-shops {
  background: #150A0A;
  padding: 120px 80px;
  --color-accent: #9B2020;
  --color-border: #2e1212;
}

.s-shops__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.s-shops__header { margin-bottom: 56px; }

.s-shops__title {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0;
}

/* ── 3-tile grid ── */
.s-shops__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 420px;
  gap: 2px;
  background: var(--color-border);
}

/* ── Shop tile (top 2) ── */
.shop-tile {
  position: relative;
  background: #0F0707;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  transition: background 0.3s;
}

.shop-tile:hover { background: #140a0a; }

.shop-tile__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(0.5);
  transition: filter 0.4s;
  z-index: 0;
}
.shop-tile__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,4,4,0.9) 0%, rgba(10,4,4,0.2) 60%, transparent 100%);
}
.shop-tile:hover .shop-tile__bg { filter: brightness(0.45) saturate(0.6); }

.shop-tile__num {
  font-family: var(--font-disp);
  font-size: clamp(100px, 14vw, 180px);
  color: rgba(139,26,26,0.07);
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.shop-tile__body {
  position: relative;
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-tile__label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.shop-tile__name {
  font-family: var(--font-disp);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin: 0;
}

.shop-tile__addr {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(242,237,230,0.38);
  margin: 0;
}

.shop-tile__directions {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.shop-tile__directions:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.shop-tile__row {
  border-top: 1px solid var(--color-border);
  padding-top: 10px;
  margin-top: 4px;
}

.shop-tile__hours {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(242,237,230,0.45);
}

.shop-tile__cta {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(155,32,32,0.4);
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  margin-top: 6px;
}

.shop-tile__cta:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── Video — standalone below the grid ── */
.shop-video-wrap {
  padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
}

.shop-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  will-change: transform;
  box-shadow:
    0 2px 4px  rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.45),
    0 28px 64px rgba(0,0,0,0.55),
    0 64px 128px rgba(0,0,0,0.45);
}

.shop-video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  display: block;
}

.shop-video-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: default;
}

@media (max-width: 900px) {
  .s-shops__grid {
    grid-template-rows: 380px;
  }
}

@media (max-width: 768px) {
  .s-shops { padding: 60px 20px; }
  .s-shops__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .shop-tile { min-height: 300px; }
  .shop-tile__body { padding: 28px 20px; }
  .shop-video-wrap { padding: 1.5rem 0 0; }
}


/* ════ BLOG ════ */
.blog {
  background: #120808;
  padding: 140px 80px;
  --color-accent: #8B1A1A;
  --color-surface: #1e0a0a;
  --color-border: #2a1010;
}

.blog__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.blog__header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.blog__title {
  font-family: var(--font-disp);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.08;
  margin: 0 0 0.6rem;
}

.blog__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-muted);
  margin: 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.blog-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  filter: saturate(0.8) brightness(0.9);
}

.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__body {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.blog-card__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.blog-card__title {
  font-family: var(--font-disp);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
  margin: 0;
}

.blog-card__excerpt {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.75;
  margin: 0;
  flex: 1;
}

.blog-card__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  transition: opacity 0.3s;
  align-self: flex-start;
}

.blog-card__link:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .blog { padding: 80px 24px; }
  .blog__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
