/* =============================================================================
   CHEN CHEN'S NASHVILLE HOT CHICKEN — Analog / Grunge Design System
   =============================================================================
   Palette: off-white paper, deep charcoal, bold red
   Typography: Bebas Neue (display) · Inter (body)
   ============================================================================= */

:root {
  /* Brand Palette */
  --bg-paper:        #F5F1E5; /* Exact cream match */
  --charcoal:        #151515;
  --charcoal-light:  #252525;
  --blood-red:       #D82A1B;
  --mustard-yellow:  #FDCF09;
  --white:           #FFFFFF;
  --text-muted:      #6B6661;
  
  /* Typography */
  --font-display:    'Bebas Neue', 'Impact', sans-serif;
  --font-body:       'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:           1300px;
  --gutter:          clamp(1.5rem, 5vw, 3rem);
  --section-pad:     clamp(5rem, 12vw, 8rem);
  --header-h:        80px;

  /* Radii - Reduced for brutalist look */
  --r-none: 0;
  
  /* Borders */
  --border-thick: 3px solid var(--charcoal);
  --border-red: 3px solid var(--blood-red);
}

/* ── Base Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overscroll-behavior-y: none;
  overflow-y: overlay;
}

/* WebKit Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  background: transparent;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: var(--blood-red);
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #ff3333;
}


body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--charcoal);
  background: var(--bg-paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Add subtle grain texture to body */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blood-red); text-decoration: none; }
a:hover { color: var(--charcoal); }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 { font-size: clamp(4rem, 10vw, 8rem); }
h2 { font-size: clamp(3rem, 7vw, 5rem); }
h3 { font-size: 2.5rem; }
h4 { font-size: 1.5rem; }

p { font-size: 1.05rem; }
strong { font-weight: 800; }

.text-red { color: var(--blood-red); }
.text-yellow { color: var(--mustard-yellow); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-pad) 0; }
.section-header { margin-bottom: 4rem; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Buttons (Stamp Style) ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: var(--charcoal);
  border: var(--border-red);
  position: relative;
  transition: transform 0.1s;
}

.btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--blood-red);
  opacity: 0.5;
  pointer-events: none;
}

.btn:hover {
  transform: translate(2px, 2px);
  background: rgba(216, 42, 27, 0.1);
}

.btn--primary {
  background: var(--blood-red);
  color: var(--bg-paper);
  border-color: var(--blood-red);
}
.btn--primary:hover {
  background: var(--charcoal);
  color: var(--bg-paper);
  border-color: var(--charcoal);
}

.btn--secondary {
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--secondary::after { border-color: var(--charcoal); }

.btn--solid {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn--solid:hover { background: var(--charcoal-light); color: var(--white); }

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-paper);
  height: var(--header-h);
  transition: top 0.3s;
}

body.has-banner .site-header { top: 38px; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { 
  height: 140px; 
  width: auto; 
  object-fit: contain; 
  transform: translateY(40px);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}
.site-header.scrolled .site-header__logo img {
  height: 115px;
  transform: translateY(32px);
}

.site-nav { display: flex; gap: 2.5rem; align-items: center; }

.site-nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--blood-red);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.site-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--mustard-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav__link:hover { color: var(--charcoal); }
.site-nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__country {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: 2px solid var(--blood-red);
  padding: 0.3rem 0.8rem;
  color: var(--blood-red);
}

.site-nav__country:hover {
  background: var(--blood-red);
  color: var(--bg-paper);
}

@media (min-width: 1400px) {
  .site-nav__country {
    position: absolute;
    left: calc(((50vw - min(50vw, 650px)) + var(--gutter)) / 2);
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--blood-red);
  position: absolute;
  transition: 0.2s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 8px; }
.nav-toggle span:nth-child(3) { top: 16px; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

@media (max-width: 960px) {
  .site-header .container { position: relative; }
  .site-header__logo { position: absolute; left: 50%; transform: translateX(-50%); }
  .site-header__logo img { height: 125px; transform: translateY(24px); }
  .site-header.scrolled .site-header__logo img { height: 100px; transform: translateY(22px); }
  .nav-toggle { display: block; position: absolute; right: var(--gutter); }
  
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-paper);
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    transition: 0.3s ease;
    border-left: var(--border-thick);
    border-color: var(--blood-red);
  }
  .site-nav.open { right: 0; }
  .site-nav__link { color: var(--blood-red); font-size: 2.5rem; }
  .site-nav__country { color: var(--blood-red); border-color: var(--blood-red); }
}

/* ── Opening Banner ────────────────────────────────────────────────────────── */
.opening-banner {
  background: var(--blood-red);
  color: var(--bg-paper);
  text-align: center;
  padding: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 150;
  border-bottom: var(--border-thick);
}
.banner-close {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--bg-paper); cursor: pointer; font-size: 1.5rem;
  padding: 1rem; z-index: 200;
}

/* ── Hero Section ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: var(--charcoal);
  color: var(--bg-paper);
  overflow: hidden;
}

@media (min-width: 961px) {
  .hero { 
    min-height: 85vh; 
    display: flex; 
    align-items: center; 
  }
}

@media (max-width: 960px) {
  .hero { padding-top: 0; }
  .hero .container { padding: 0; }
}

.hero .grid-2 { 
  gap: 0; 
  align-items: center; 
}

@media (min-width: 961px) {
  .hero .grid-2 {
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }
}

.hero__image-box {
  position: relative;
  width: 100%;
}

.hero__image-box img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 960px) {
  .hero__image-box img {
    height: 45vh;
    object-fit: cover;
    object-position: 65% center;
  }
}

@media (min-width: 961px) {
  .hero__image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 60vw;
    height: 100%;
    z-index: 0;
  }
  .hero__image-box img {
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
  .hero__image-box::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to right, transparent 40%, var(--charcoal) 95%);
  }
}

.hero__content { 
  position: relative; 
  margin-left: 0; 
  padding-left: 2rem; 
  z-index: 10;
}

@media (min-width: 961px) {
  .hero__content {
    width: 42%;
  }
}

@media (max-width: 960px) {
  .hero__content { 
    margin-left: 0; 
    margin-top: 1.5rem; 
    padding: 0 var(--gutter); 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
  line-height: 0.85;
}

@media (min-width: 961px) {
  .hero__title {
    font-size: clamp(3rem, 5.5vw, 7.5rem);
  }
}

.hero__title > span {
  white-space: nowrap;
}

@media (max-width: 960px) {
  .hero__title { 
    margin-left: 0; 
    font-size: clamp(2.5rem, 11vw, 4rem); 
    align-items: center;
  }
}

.text-cream { color: var(--bg-paper); }
.text-charcoal { color: var(--text-muted); }

@media (max-width: 960px) {
  .text-cream { color: var(--bg-paper); }
}

.hero__desc {
  max-width: 400px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
@media (max-width: 960px) {
  .hero__desc { text-align: center; margin-bottom: 0.5rem; }
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 960px) {
  .hero__cta { justify-content: center; margin-top: 0.5rem; }
}

.hero__burn-scale {
  position: absolute;
  right: -2rem;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__burn-scale span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.hero__burn-scale .fire-icon {
  width: 30px; height: 30px; background: var(--blood-red); 
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  margin-bottom: 0.5rem;
}
.hero__burn-scale .box {
  width: 30px; height: 30px; border: var(--border-thick); margin-bottom: 0.2rem; background: var(--charcoal);
}
.hero__burn-scale .box.red { background: var(--blood-red); }

@media (max-width: 960px) {
  .hero__burn-scale { display: none; }
}

/* ── Torn Paper Sections (Burn Scale & Menu) ───────────────────────────────── */
.torn-section-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  max-width: 1500px;
}

@media (max-width: 960px) {
  .torn-section-container { grid-template-columns: 1fr; }
  .burn-scale-panel {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.burn-scale-panel {
  background: var(--charcoal);
  color: var(--bg-paper);
  padding: 3rem 2rem;
  position: relative;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.25);
  transform: rotate(-1deg);
  transform-style: preserve-3d;
}

.burn-scale-panel::before,
.burn-scale-panel::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.burn-scale-panel::before {
  background: #b5ad9e;
  transform: translateZ(-1px) rotate(3deg) translate(-12px, 12px);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.burn-scale-panel::after {
  background: #d1c9ba;
  transform: translateZ(-2px) rotate(-2deg) translate(12px, -10px);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.15);
}

.burn-scale-panel h2 { margin-bottom: 2rem; }
#heat h2 { color: var(--blood-red); }
#szechuan-story h2 { color: var(--mustard-yellow); }

.burn-scale__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.burn-card {
  border-top: 2px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}
.burn-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blood-red);
  line-height: 1;
}
.burn-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.burn-card__desc {
  font-size: 1.0rem;
  color: #FFF;
  line-height: 1.5;
}

/* Menu Panel */
.menu-panel {
  padding: 2rem;
  position: relative;
}
.menu-panel h2 { font-size: 4rem; margin-bottom: 1rem; transform: rotate(2deg); }

.menu-polaroids {
  position: relative;
  min-height: 600px;
}

.polaroid {
  background: var(--white);
  padding: 10px 10px 30px 10px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
  position: absolute;
  width: 280px;
  border: 1px solid #ddd;
  transition: transform 0.3s, z-index 0s;
}

.polaroid:hover { z-index: 10; transform: scale(1.05) !important; }

.polaroid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.polaroid__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-top: 1rem;
  text-align: center;
  line-height: 1;
}
.polaroid__price {
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: var(--blood-red);
  color: var(--white);
  font-family: var(--font-display);
  padding: 2px 8px;
  font-size: 1.2rem;
  transform: rotate(-5deg);
}

.polaroid--1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 2; }
.polaroid--2 { top: 40px; right: 0; transform: rotate(3deg); z-index: 1; }
.polaroid--3 { top: 200px; left: 20px; transform: rotate(5deg); z-index: 3; }
.polaroid--4 { top: 250px; right: 20px; transform: rotate(-2deg); z-index: 2; }

@media(max-width: 768px) {
  .menu-polaroids { display: flex; flex-direction: column; gap: 2rem; position: relative; min-height: auto;}
  .polaroid { position: relative; top: auto!important; left: auto!important; right: auto!important; width: 100%; transform: rotate(0)!important;}
}

/* ── Chef Section ──────────────────────────────────────────────────────────── */
.chef { 
  background: var(--charcoal);
  color: var(--bg-paper);
  border-top: var(--border-thick); 
  border-bottom: var(--border-thick); 
  padding: 5rem 0;
}
.chef .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.chef__img-wrap { position: relative; }
.chef__img-wrap img {
  border: 3px solid var(--bg-paper);
}
.chef__stamp {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--blood-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  transform: rotate(-10deg);
  border: 2px solid var(--white);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.chef__content h2 { margin-bottom: 1.5rem; color: var(--blood-red); }
.chef__content p { margin-bottom: 1.2rem; font-size: 1.1rem; }

@media (max-width: 960px) {
  .chef .container { grid-template-columns: 1fr; }
}

/* ── Location & Catering ───────────────────────────────────────────────────── */
.loc-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (max-width: 960px) {
  .loc-cat-grid { grid-template-columns: 1fr; }
}

.location-box { position: relative; }
.location-box__map {
  border: var(--border-thick);
  background: #EAE5DE;
  height: 250px;
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.location-pin {
  display: none;
}

.catering-box {
  background: var(--blood-red);
  padding: 3rem;
  color: var(--bg-paper);
  clip-path: polygon(0 2%, 100% 0, 98% 100%, 2% 98%);
}
.catering-box h2 { color: var(--charcoal); margin-bottom: 1rem; }
.catering-box h3 { font-size: 3.5rem; line-height: 0.8; margin-bottom: 2rem;}

.cat-form input, .cat-form textarea {
  width: 100%;
  background: transparent;
  border: 2px solid var(--charcoal);
  border-width: 0 0 2px 0;
  padding: 0.8rem 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  color: var(--bg-paper);
  font-size: 1rem;
}
.cat-form input::placeholder, .cat-form textarea::placeholder { color: rgba(255,255,255,0.6); }
.cat-form input:focus, .cat-form textarea:focus { outline: none; background: rgba(0,0,0,0.1); }

.cat-submit {
  background: var(--charcoal);
  color: var(--bg-paper);
  border: none;
  font-family: var(--font-display);
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-transform: uppercase;
}

#cateringSuccess { display: none; padding: 2rem; background: var(--charcoal); color: var(--bg-paper); margin-top: 1rem;}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: var(--border-thick);
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E"), #EAE5DE;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}

@media(max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-social-links h4 { margin-bottom: 1.5rem; }
.social-icons { display: flex; gap: 1rem; }
.social-icons a {
  width: 40px; height: 40px;
  background: var(--blood-red);
  color: var(--bg-paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem;
  border-radius: 4px;
}

.footer-ig h4 { margin-bottom: 1.5rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ig-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 2px solid var(--charcoal); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Ticker ────────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--charcoal);
  color: var(--bg-paper);
  padding: 0.5rem 0;
  overflow: hidden;
  border-top: 5px solid var(--blood-red);
  border-bottom: 5px solid var(--blood-red);
  margin-top: var(--header-h);
}

.ticker--mobile {
  display: none;
  margin-top: 0; /* Remove header offset since it's below the image */
  width: 100%;
  border-top: 5px solid var(--blood-red);
}

@media (max-width: 960px) {
  .ticker--desktop { display: none; }
  .ticker--mobile { display: block; }
}
.ticker__track {
  display: flex; 
  align-items: center;
  width: max-content;
  animation: ticker-scroll 70s linear infinite;
}
.ticker__item {
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 0 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.ticker__separator { 
  color: var(--mustard-yellow); 
  font-family: var(--font-display);
  font-size: 0.8rem;
  vertical-align: middle;
}
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
/* Mobile Order Bar */
.mobile-order-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 200;
  background: var(--bg-paper); border-top: var(--border-thick);
  padding: 0.5rem; gap: 0.5rem;
}
.mobile-order-bar .btn { flex: 1; font-size: 1.2rem; padding: 0.5rem; }
@media(max-width: 768px) { .mobile-order-bar { display: flex; } body { padding-bottom: 60px; } }

/* ── Press Section ───────────────────────────────────────────────────────────── */
#press {
  background: var(--charcoal);
}

#press h2 {
  color: var(--bg-paper);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  border: var(--border-thick) solid var(--bg-paper);
  background: var(--bg-paper);
  color: var(--charcoal);
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 var(--blood-red);
  transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
  text-decoration: none;
}

.press-card:hover {
  transform: translateY(0);
  box-shadow: 0 0 0 var(--blood-red);
  background: var(--charcoal);
  color: var(--bg-paper);
}

.press-card__source {
  font-family: var(--font-display);
  color: var(--blood-red);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.press-card__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.95;
  margin: 0;
  text-transform: uppercase;
}

.press-card__excerpt {
  font-size: 1.1rem;
  line-height: 1.5;
  flex-grow: 1;
  color: var(--text-muted);
}

.press-card:hover .press-card__excerpt {
  color: var(--bg-paper);
}

.press-card__cta {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blood-red);
  margin-top: 1rem;
  display: inline-block;
  transition: 0.3s;
}

.press-card:hover .press-card__cta {
  color: var(--mustard-yellow);
}
