.about-hero {
  padding: 5rem 0;
}
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
h1 {
    font-size: 4rem;
}
.about-copy p:not(.stamp) {
  max-width: 620px;
  margin-top: 1.5rem;
  color: var(--paper);
  font-size: 1.1rem;
  line-height: 1.8;
}

.chef-card,
.note-card {
  background: var(--paper);
  color: var(--ink);
  border: var(--border);
  margin-right: 20px;
}

.chef-card {
  padding: 1.5rem;
  box-shadow: 8px 8px 0 var(--pink);
  transform: rotate(1deg);
}

.chef-photo {
  display: grid;
  place-items: center;
  min-height: 360px;
  margin-bottom: 1.5rem;
  border: 2px dashed rgba(16, 16, 16, 0.35);
  background:
    linear-gradient(135deg, rgba(223, 123, 53, 0.18), transparent),
    var(--white);
}

.chef-photo span {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chef-card h2,
.note-card h2 {
  margin-bottom: 1rem;
}

.chef-card p,
.note-card p {
  line-height: 1.7;
}

.about-notes {
  padding: 3rem 0 6rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.note-card {
  padding: 1.5rem;
  box-shadow: 6px 6px 0 var(--cyan);
}

.note-card:nth-child(2) {
  box-shadow: 6px 6px 0 var(--orange);
  transform: rotate(-1deg);
}
.about-video {
  border-top: 2px solid rgba(247, 237, 216, 0.25);
  padding: 0 0 6rem;
  padding-top: 3rem;
}

.video-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.video-frame {
  max-width: 340px;
  margin: 0 auto;
  padding: 0.75rem;
  background: var(--paper);
  border: var(--border);
  box-shadow: 8px 8px 0 var(--orange);
  transform: rotate(-1deg);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-copy h2 {
  margin-bottom: 1rem;
}

.video-copy p {
  max-width: 55ch;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .about-layout,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .chef-card,
  .note-card {
    transform: none !important;
    padding: 1.15rem;
  }
  .video-card {
    grid-template-columns: 1fr;

  }
}
@media (max-width: 650px) {
  .category-card,
  .chef-card,
  .note-card,
  .visit-card,
  .hours-card,
  .footer-card,
  .menu-cta-card {
    transform: none !important;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.15rem;
  }
  .about-video {
    padding: 0 0 4rem;
  }

  .video-card {
    padding: 1.15rem;
  }

  .video-copy h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 900px) {
  .about-hero {
    padding: 4rem 0 3rem;
  }

  .about-layout {
    gap: 2.25rem;
  }

  h1 {
    font-size: clamp(2.6rem, 8vw, 4rem);
    line-height: 0.95;
  }

  .about-copy p:not(.stamp) {
    max-width: 100%;
  }
}

@media (max-width: 650px) {
  .about-hero {
    padding: 3rem 0 2rem;
  }

  .about-layout {
    gap: 2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 0.95;
  }

  .about-copy p:not(.stamp) {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .chef-card,
  .note-card {
    padding: 1.15rem;
  }

  .chef-photo {
    min-height: 240px;
    margin-bottom: 1rem;
  }

  .chef-card h2,
  .note-card h2 {
    font-size: 1.45rem;
  }

  .about-notes {
    padding: 2rem 0 4rem;
  }

  .notes-grid {
    gap: 1.25rem;
  }

  .category-card,
  .chef-card,
  .note-card,
  .visit-card,
  .hours-card,
  .footer-card,
  .menu-cta-card {
    transform: none !important;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.15rem;
  }
}