.takeout-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px) 0 64px;
}

.takeout-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  min-height: clamp(520px, 68vh, 720px);
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.96), rgba(255, 255, 255, 0.98) 58%, rgba(241, 90, 36, 0.08)),
    #fff;
  overflow: hidden;
}

.takeout-copy h1 {
  margin: 8px 0 14px;
  max-width: 680px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.94;
  letter-spacing: 0;
}

.takeout-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.takeout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.takeout-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.takeout-button.primary {
  background: var(--orange);
  color: #fff;
}

.takeout-button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.takeout-hero-media {
  border-radius: 8px;
  overflow: hidden;
  background: #f6f0e8;
  box-shadow: var(--shadow);
}

.takeout-hero-media img,
.takeout-card-media img,
.takeout-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.takeout-hero-media {
  aspect-ratio: 1 / 1;
}

.takeout-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 56px 0 24px;
}

.takeout-section-head h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.takeout-section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

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

.takeout-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(36, 36, 36, 0.08);
}

.takeout-card-media {
  aspect-ratio: 1 / 1;
  background: #f7f2eb;
  overflow: hidden;
}

.takeout-card-media img {
  transition: transform 220ms ease;
}

.takeout-card:hover .takeout-card-media img {
  transform: scale(1.035);
}

.takeout-card-body {
  padding: 20px;
}

.takeout-card-body h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.18;
}

.takeout-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.takeout-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.takeout-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #eeded0;
  border-radius: 999px;
  background: #fff7ed;
  color: #554d46;
  font-size: 13px;
  font-weight: 850;
}

.takeout-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  margin-top: 58px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}

.takeout-feature h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
}

.takeout-feature p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.takeout-points {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-weight: 850;
}

.takeout-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.takeout-points li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.takeout-feature-media {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f2eb;
}

@media (max-width: 940px) {
  .takeout-hero,
  .takeout-feature {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .takeout-shell {
    width: min(100% - 28px, 1180px);
  }

  .takeout-hero {
    padding: 22px;
  }

  .takeout-section-head {
    display: block;
  }

  .takeout-section-head p {
    margin-top: 12px;
  }

  .takeout-grid {
    grid-template-columns: 1fr;
  }
}
